/// #pkgName FGUI包名 /// #panelName UIPanel名字 /// #UIName = $"{#pkgName}{#panelName}" UIKey名字 /// 该脚本由模板创建 /// created by cb 2024 using System.Collections.Generic; using FairyGUI; using FL.Data; using XGame; using XGame.Framework.UI; namespace FL.FGUI { /// /// UI逻辑处理类 /// /// public partial class PartnerSbUpListItemCtrl : UIController { protected override void OnEnable(object intent) { AddUIListenres(); } protected override void OnDisable() { RemoveUIListenres(); } #region UI事件 private void AddUIListenres() { VM.PanelEvent.Add(OnClickSbItem); VM.SbItem.VM.EpiSetBase.VM.PanelEvent.Add(OnClickMwSetBtn); } private void RemoveUIListenres() { VM.PanelEvent.Remove(OnClickSbItem); VM.SbItem.VM.EpiSetBase.VM.PanelEvent.Remove(OnClickMwSetBtn); } private void OnClickMwSetBtn(EventContext eventContext) { eventContext.StopPropagation(); EventSingle.Instance.Notify(EventDefine.PartnerMainMwSelect, _posId); } private void OnClickSbItem() { EventSingle.Instance.Notify(EventDefine.PartnerMainSbSelect, _posId); } #endregion #region 属性 private int _posId; private int _sbId; private int _mwId; #endregion public void OnRefresh(int index, PartnerSbUpListItemParam param) { _posId = param.PosId; _sbId = PartnersData.Instance.UpSbMap.GetValueOrDefault(_posId, 0); VM.SbItem.Ctrl.ShowUI(_sbId); VM.SbItem.VM.Type.selectedIndex = param.SelectType; if (param.CurSelectPos == _posId) { VM.SbItem.VM.Select.selectedIndex = 1; } else { VM.SbItem.VM.Select.selectedIndex = 0; } } } }