PartnerMwStrengthPanelVM.Gen.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 PartnerMwStrengthPanelVM : FguiViewModel
  19. {
  20. public Controller Have { get; private set; }
  21. public Controller IsUp { get; private set; }
  22. public PartnerMwBaseItemView MwBase { get; private set; }
  23. public GTextField NameLabel { get; private set; }
  24. public PartnerMwDetailNoIconNestedView DetailNested { get; private set; }
  25. public PartnerMwStarUpBtnView StarUpBtn { get; private set; }
  26. public GButton LeftBtn { get; private set; }
  27. public GButton RightBtn { get; private set; }
  28. public GButton UpBtn { get; private set; }
  29. public GImage UpArrImg { get; private set; }
  30. public GButton DownBtn { get; private set; }
  31. public GList StarList { get; private set; }
  32. public PartnerSbSetItemView SbSetItem { get; private set; }
  33. protected override void BindComponents(GComponent panel, IUIViewAdapter adapter)
  34. {
  35. Have = panel.GetController("Have");
  36. IsUp = panel.GetController("IsUp");
  37. MwBase = adapter.CreateNested<PartnerMwBaseItemView>(new FguiNested(panel.GetChild("MwBase").asCom), true);
  38. AddChild(MwBase);
  39. NameLabel = panel.GetChild("NameLabel") as GTextField;
  40. DetailNested = adapter.CreateNested<PartnerMwDetailNoIconNestedView>(new FguiNested(panel.GetChild("DetailNested").asCom), true);
  41. AddChild(DetailNested);
  42. StarUpBtn = adapter.CreateNested<PartnerMwStarUpBtnView>(new FguiNested(panel.GetChild("StarUpBtn").asCom), true);
  43. AddChild(StarUpBtn);
  44. LeftBtn = panel.GetChild("LeftBtn") as GButton;
  45. RightBtn = panel.GetChild("RightBtn") as GButton;
  46. UpBtn = panel.GetChild("UpBtn") as GButton;
  47. UpArrImg = panel.GetChild("UpArrImg") as GImage;
  48. DownBtn = panel.GetChild("DownBtn") as GButton;
  49. StarList = panel.GetChild("StarList") as GList;
  50. StarList.Init(typeof(PartnerSbStarListItemView), adapter.CreateListItem);
  51. SbSetItem = adapter.CreateNested<PartnerSbSetItemView>(new FguiNested(panel.GetChild("SbSetItem").asCom), true);
  52. AddChild(SbSetItem);
  53. }
  54. }
  55. }