/// #pkgName FGUI包名 /// #panelName UIPanel名字 /// #UIName = $"{#pkgName}{#panelName}" UIKey名字 /// 该脚本由模板创建 /// created by cb 2024 using FairyGUI; using XGame.Database; using XGame.Framework.UI; namespace FL.FGUI { /// /// UI逻辑处理类 /// /// public partial class PartnerEpiBookGroupListItemCtrl : UIController { protected override void OnEnable(object intent) { AddUIListenres(); } protected override void OnDisable() { RemoveUIListenres(); } #region UI事件 private void AddUIListenres() { VM.PanelEvent.Add(OnClick); } private void RemoveUIListenres() { VM.PanelEvent.Remove(OnClick); } private void OnClick() { Context.UI.OpenAsync(UIKeys.PartnerEpiBookDetailPanel, _id); } #endregion private int _id; public void OnRefresh(int index, collectTable table) { _id = table.Id; VM.NameLabel.text = table.Name; VM.List.BindDatas(table.Param); } } }