TemplateVM.Gen.cs 763 B

1234567891011121314151617181920212223242526272829
  1. /// #pkgName FGUI包名
  2. /// #panelName UIPanel名字
  3. /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
  4. /// #PropertyDefineArea 属性定义区域
  5. /// #PropertyAssignArea 属性赋值区域
  6. /// #ComponentType 组件类型
  7. /// #PropertyName 属性名字
  8. /// 该脚本由模板创建,不可编辑
  9. /// created by cb 2024
  10. using FairyGUI;
  11. using XGame.Framework.FGUI;
  12. namespace FL.FGUI
  13. {
  14. /// <summary>
  15. /// 该脚本由模板创建,不可修改,不可编辑
  16. /// </summary>
  17. public partial class <#UIName>VM : FguiViewModel
  18. {
  19. <#PropertyDefineArea>
  20. public <#UIName>VM(GComponent panel) : base(panel)
  21. {
  22. }
  23. protected override void BindComponents(GComponent panel)
  24. {
  25. <#PropertyAssignArea>
  26. }
  27. }
  28. }