1234567891011121314151617181920212223 |
- /// #pkgName FGUI包名
- /// #panelName UIPanel名字
- /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
- /// 该脚本由模板创建
- /// created by cb 2024
- using XGame.Framework.UI;
- namespace FL.FGUI
- {
- public static partial class UINestedKeys
- {
- private static UIKey _PartnerEpiBaseItem;
- public static UIKey PartnerEpiBaseItem => _PartnerEpiBaseItem ?? (_PartnerEpiBaseItem = new UIKey("Partner", "EpiBaseItem", typeof(PartnerEpiBaseItemView)));
- }
- public partial class PartnerEpiBaseItemView : NestedView<PartnerEpiBaseItemCtrl, PartnerEpiBaseItemVM>
- {
- protected override void OnDispose()
- {
- }
- }
- }
|