PartnerBookDetailListItemCtrl.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /// #pkgName FGUI包名
  2. /// #panelName UIPanel名字
  3. /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
  4. /// 该脚本由模板创建
  5. /// created by cb 2024
  6. using FairyGUI;
  7. using XGame.Database;
  8. using XGame.Framework.UI;
  9. namespace FL.FGUI
  10. {
  11. /// <summary>
  12. /// UI逻辑处理类
  13. /// </summary>
  14. /// <typeparam name=""></typeparam>
  15. public partial class PartnerBookDetailListItemCtrl : UIController<PartnerBookDetailListItemVM>
  16. {
  17. protected override void OnEnable(object intent)
  18. {
  19. AddUIListenres();
  20. }
  21. protected override void OnDisable()
  22. {
  23. RemoveUIListenres();
  24. }
  25. #region UI事件
  26. private void AddUIListenres()
  27. {
  28. VM.GotoBtn.onClick.Add(OnClickGotoBtn);
  29. VM.GetBtn.onClick.Add(OnClickGetBtn);
  30. }
  31. private void RemoveUIListenres()
  32. {
  33. VM.GotoBtn.onClick.Remove(OnClickGotoBtn);
  34. VM.GetBtn.onClick.Remove(OnClickGetBtn);
  35. }
  36. private void OnClickGotoBtn(EventContext context)
  37. {
  38. }
  39. private void OnClickGetBtn(EventContext context)
  40. {
  41. }
  42. #endregion
  43. public void OnRefresh(int index, collect_rewardTable table)
  44. {
  45. VM.DescLabel.text = table.Name;
  46. }
  47. }
  48. }