PartnerMwSetBtnCtrl.cs 928 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 PartnerMwSetBtnCtrl : UIController<PartnerMwSetBtnVM>
  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. }
  28. private void RemoveUIListenres()
  29. {
  30. }
  31. #endregion
  32. public void SetData(int mwId, int sbId, bool showStar)
  33. {
  34. VM.MwSet.Ctrl.SetData(mwId, sbId, showStar);
  35. }
  36. }
  37. }