PlayerJobInformationPanelCtrl.cs 984 B

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