/// #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 _PartnerMwReplacePanel; public static UIKey PartnerMwReplacePanel => _PartnerMwReplacePanel ?? (_PartnerMwReplacePanel = new UIKey("Partner", "MwReplacePanel", typeof(PartnerMwReplacePanelView))); } public partial class PartnerMwReplacePanelView : UIView { protected override void AddController(IUIControllerGroup group) { group.Add(new PartnerMwReplacePanelCtrl()); } protected override IUIViewModel CreateViewModel() { return new PartnerMwReplacePanelVM(); } protected override void OnDispose() { } } }