CommonBackGroundNestedCtrl.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /// #pkgName FGUI包名
  2. /// #panelName UIPanel名字
  3. /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
  4. /// 该脚本由模板创建
  5. /// created by cb 2024
  6. using FairyGUI;
  7. using XGame.Framework.UI;
  8. namespace FL.FGUI
  9. {
  10. /// <summary>
  11. /// UI逻辑处理类
  12. /// </summary>
  13. /// <typeparam name=""></typeparam>
  14. public partial class CommonBackGroundNestedCtrl : UIController<CommonBackGroundNestedVM>
  15. {
  16. protected override void OnEnable(object intent)
  17. {
  18. AddUIListenres();
  19. }
  20. protected override void OnDisable()
  21. {
  22. RemoveUIListenres();
  23. }
  24. #region UI事件
  25. private void AddUIListenres()
  26. {
  27. VM.BgCloseBtn.onClick.Add(OnClickBgCloseBtn);
  28. }
  29. private void RemoveUIListenres()
  30. {
  31. VM.BgCloseBtn.onClick.Remove(OnClickBgCloseBtn);
  32. }
  33. private void OnClickBgCloseBtn(EventContext context)
  34. {
  35. Context.ClosePanel();
  36. }
  37. #endregion
  38. }
  39. }