12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /// #pkgName FGUI包名
- /// #panelName UIPanel名字
- /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
- /// 该脚本由模板创建
- /// created by cb 2024
- using FairyGUI;
- using XGame.Database;
- using XGame.Framework.UI;
- namespace FL.FGUI
- {
- /// <summary>
- /// UI逻辑处理类
- /// </summary>
- /// <typeparam name=""></typeparam>
- public partial class BagJumpListItemCtrl : UIController<BagJumpListItemVM>
- {
- private JumpTable _jumpInfo;
- protected override void OnEnable(object intent)
- {
- AddUIListenres();
- }
- protected override void OnDisable()
- {
- RemoveUIListenres();
- }
- #region UI事件
- private void AddUIListenres()
- {
- VM.GoBtn.onClick.Add(OnClickGoBtn);
- }
- private void RemoveUIListenres()
- {
- VM.GoBtn.onClick.Remove(OnClickGoBtn);
- }
- private void OnClickGoBtn(EventContext context)
- {
- if (!string.IsNullOrEmpty(_jumpInfo?.UI))
- {
- Context.UI.OpenAsync(UIKeys.NameToKey(_jumpInfo.UI), _jumpInfo.Param);
- Context.ClosePanel();
- Context.UI.Close(UIKeys.BagBackpackPanel);
- }
- }
- #endregion
- public void OnRefresh(int index, int jumpId)
- {
- _jumpInfo = JumpTableRepo.Get(jumpId);
- if (_jumpInfo != null)
- {
- VM.NameLabel.text = _jumpInfo.Name;
- VM.DescLabel.text = _jumpInfo.Desc;
- }
- }
- }
- }
|