/// #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 _MountUpgradeSuccessfulPanel; public static UIKey MountUpgradeSuccessfulPanel => _MountUpgradeSuccessfulPanel ?? (_MountUpgradeSuccessfulPanel = new UIKey("Mount", "UpgradeSuccessfulPanel", typeof(MountUpgradeSuccessfulPanelView))); } public partial class MountUpgradeSuccessfulPanelView : UIView { public static UILayer Layer => UILayer.High; protected override void AddController(IUIControllerGroup group) { group.Add(new MountUpgradeSuccessfulPanelCtrl()); } protected override IUIViewModel CreateViewModel() { return new MountUpgradeSuccessfulPanelVM(); } protected override void OnDispose() { } } }