/// #pkgName FGUI包名 /// #panelName UIPanel名字 /// #UIName = $"{#pkgName}{#panelName}" UIKey名字 /// 该脚本由模板创建 /// created by cb 2024 using FL.Data; using FL.Data.Items; using FL.Network; using System.Collections.Generic; using XGame.Framework.UI; namespace FL.FGUI { /// /// UI逻辑处理类 /// /// public partial class MailMailRwdItemCtrl : UIController { protected override void OnEnable(object intent) { AddUIListenres(); } protected override void OnDisable() { RemoveUIListenres(); } #region UI事件 private void AddUIListenres() { } private void RemoveUIListenres() { } public void OnRefresh(int index, IMailRwdItem mailRwdItem) { VM.IsGetImg.visible = mailRwdItem.IsGet == true; VM.ItemBtn.Ctrl.ShowUI(mailRwdItem.Item); } #endregion } }