MainHomeBottomPanelVM.Gen.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 MainHomeBottomPanelVM : FguiViewModel
  19. {
  20. public Controller BtnCtrl { get; private set; }
  21. public GImage TongYongLanBottom { get; private set; }
  22. public GButton RoleBtn { get; private set; }
  23. public GButton JianlingBtn { get; private set; }
  24. public GButton FubenBtn { get; private set; }
  25. public GButton GonghuiBtn { get; private set; }
  26. public GButton HomeBtn { get; private set; }
  27. public GButton BaoZangBtn { get; private set; }
  28. public GGroup Bottom { get; private set; }
  29. public Transition T0 { get; private set; }
  30. public Transition T1 { get; private set; }
  31. protected override void BindComponents(GComponent panel, IUIViewAdapter adapter)
  32. {
  33. BtnCtrl = panel.GetController("btnCtrl");
  34. TongYongLanBottom = panel.GetChild("TongYongLanBottom") as GImage;
  35. RoleBtn = panel.GetChild("RoleBtn") as GButton;
  36. JianlingBtn = panel.GetChild("JianlingBtn") as GButton;
  37. FubenBtn = panel.GetChild("FubenBtn") as GButton;
  38. GonghuiBtn = panel.GetChild("GonghuiBtn") as GButton;
  39. HomeBtn = panel.GetChild("HomeBtn") as GButton;
  40. BaoZangBtn = panel.GetChild("BaoZangBtn") as GButton;
  41. Bottom = panel.GetChild("Bottom") as GGroup;
  42. T0 = panel.GetTransition("t0");
  43. T1 = panel.GetTransition("t1");
  44. }
  45. }
  46. }