123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /// #pkgName FGUI包名
- /// #panelName UIPanel名字
- /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
- /// 该脚本由模板创建
- /// created by cb 2024
- using XGame.Framework.UI;
- namespace FL.FGUI
- {
- /// <summary>
- /// UI逻辑处理类
- /// </summary>
- /// <typeparam name=""></typeparam>
- public partial class PartnerSbBagListLineItemCtrl : UIController<PartnerSbBagListLineItemVM>
- {
- protected override void OnEnable(object intent)
- {
- AddUIListenres();
- }
- protected override void OnDisable()
- {
- RemoveUIListenres();
- }
- #region UI事件
- private void AddUIListenres() { }
- private void RemoveUIListenres() { }
- #endregion
- public void OnRefresh(int index, PartnerSbBagListParam param)
- {
- if (param.Type == 0)
- {
- VM.Type.selectedIndex = 1;
- VM.TitleLabel.title = param.Title;
- }
- else
- {
- VM.Type.selectedIndex = 0;
- VM.List.BindDatas(param.SbList);
- }
- VM.Group.EnsureBoundsCorrect();
- }
- }
- }
|