TemporaryEquipBagPanelVM.Gen.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 TemporaryEquipBagPanelVM : FguiViewModel
  19. {
  20. public CommonBackGroundNestedView Background { get; private set; }
  21. public GComponent EmptyCom { get; private set; }
  22. public GImage ListBG { get; private set; }
  23. public GList EquipList { get; private set; }
  24. public GButton SellBtn { get; private set; }
  25. public GGroup UIGroup { get; private set; }
  26. protected override void BindComponents(GComponent panel, IUIViewAdapter adapter)
  27. {
  28. Background = adapter.CreateNested<CommonBackGroundNestedView>(new FguiNested(panel.GetChild("Background").asCom), true);
  29. AddChild(Background);
  30. EmptyCom = panel.GetChild("EmptyCom") as GComponent;
  31. ListBG = panel.GetChild("ListBG") as GImage;
  32. EquipList = panel.GetChild("EquipList") as GList;
  33. EquipList.Init(typeof(TemporaryEquipEquipItemView), adapter.CreateListItem);
  34. SellBtn = panel.GetChild("SellBtn") as GButton;
  35. UIGroup = panel.GetChild("UIGroup") as GGroup;
  36. }
  37. }
  38. }