12345678910111213141516171819202122232425262728293031323334 |
- /// #pkgName FGUI包名
- /// #panelName UIPanel名字
- /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
- /// 该脚本由模板创建
- /// created by cb 2024
- using XGame.Framework.UI;
- namespace FL.FGUI
- {
- public static partial class UIKeys
- {
- private static UIKey _PartnerEpiChangePanel;
- public static UIKey PartnerEpiChangePanel => _PartnerEpiChangePanel ?? (_PartnerEpiChangePanel = new UIKey("Partner", "EpiChangePanel", typeof(PartnerEpiChangePanelView)));
- }
- public partial class PartnerEpiChangePanelView : UIView
- {
- public static UILayer Layer => UILayer.Popup;
- protected override void AddController(IUIControllerGroup group)
- {
- group.Add(new PartnerEpiChangePanelCtrl());
- }
- protected override IUIViewModel CreateViewModel()
- {
- return new PartnerEpiChangePanelVM();
- }
- protected override void OnDispose()
- {
- }
- }
- }
|