PartnerSbStrengthPanelVM.Gen.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. using XGame.Framework.UI;
  13. namespace FL.FGUI
  14. {
  15. /// <summary>
  16. /// 该脚本由模板创建,不可修改,不可编辑
  17. /// </summary>
  18. public partial class PartnerSbStrengthPanelVM : FguiViewModel
  19. {
  20. public GLoader3D Spine { get; private set; }
  21. public GTextField NameLabel { get; private set; }
  22. public GTextField LvLabel { get; private set; }
  23. public PartnerSbDetailNoIconNestedView DetailNested { get; private set; }
  24. public PartnerSbStarUpBtnView StarUpBtn { get; private set; }
  25. public PartnerSbLevelUpBtnView LevelUpBtn { get; private set; }
  26. public GButton UpBtn { get; private set; }
  27. public GButton LeftBtn { get; private set; }
  28. public GButton RightBtn { get; private set; }
  29. public GButton MwSet { get; private set; }
  30. protected override void BindComponents(GComponent panel, IUIViewAdapter adapter)
  31. {
  32. Spine = panel.GetChild("Spine") as GLoader3D;
  33. NameLabel = panel.GetChild("NameLabel") as GTextField;
  34. LvLabel = panel.GetChild("LvLabel") as GTextField;
  35. DetailNested = adapter.CreateNested<PartnerSbDetailNoIconNestedView>(new FguiNested(panel.GetChild("DetailNested").asCom), true);
  36. AddChild(DetailNested);
  37. StarUpBtn = adapter.CreateNested<PartnerSbStarUpBtnView>(new FguiNested(panel.GetChild("StarUpBtn").asCom), true);
  38. AddChild(StarUpBtn);
  39. LevelUpBtn = adapter.CreateNested<PartnerSbLevelUpBtnView>(new FguiNested(panel.GetChild("LevelUpBtn").asCom), true);
  40. AddChild(LevelUpBtn);
  41. UpBtn = panel.GetChild("UpBtn") as GButton;
  42. LeftBtn = panel.GetChild("LeftBtn") as GButton;
  43. RightBtn = panel.GetChild("RightBtn") as GButton;
  44. MwSet = panel.GetChild("MwSet") as GButton;
  45. }
  46. }
  47. }