TemplatePanel.cs 841 B

12345678910111213141516171819202122232425262728293031323334
  1. /// #pkgName FGUI包名
  2. /// #panelName UIPanel名字
  3. /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
  4. /// 该脚本由模板创建
  5. /// created by cb 2024
  6. using XGame.Framework.UI;
  7. namespace FL.FGUI
  8. {
  9. public static partial class UIKeys
  10. {
  11. private static UIKey _<#UIName>;
  12. public static UIKey <#UIName> => _<#UIName> ?? (_<#UIName> = new UIKey("<#pkgName>", "<#panelName>", typeof(<#UIName>View)));
  13. }
  14. public partial class <#UIName>View : UIView
  15. {
  16. <#UILayerDefineArea>
  17. protected override void AddController(IUIControllerGroup group)
  18. {
  19. group.Add(new <#UIName>Ctrl());
  20. }
  21. protected override IUIViewModel CreateViewModel()
  22. {
  23. return new <#UIName>VM();
  24. }
  25. protected override void OnDispose()
  26. {
  27. }
  28. }
  29. }