This commit is contained in:
2026-07-14 14:48:39 +08:00
parent 27b82c051c
commit e356348b3d
49 changed files with 352 additions and 467 deletions
@@ -55,5 +55,6 @@ namespace ScrewsMaster
public const string RecordViewCtrl = "RecordViewCtrl";
public const string ThreeDaysGiftCtrl = "ThreeDaysGiftCtrl";
public const string RewardMulNewCtrl = "RewardMulNewCtrl";
public const string LoginACtrl = "LoginACtrl";
}
}
@@ -58,5 +58,6 @@ namespace ScrewsMaster
public const string RecordViewModel = "RecordViewModel";
public const string ThreeDaysGiftModel = "ThreeDaysGiftModel";
public const string RewardMulNewModel = "RewardMulNewModel";
public const string LoginAModel = "LoginAModel";
}
}
@@ -50,7 +50,8 @@ namespace ScrewsMaster
moduleManager.AddModel(ModelConst.RecordViewModel, new RecordViewModel());
moduleManager.AddModel(ModelConst.ThreeDaysGiftModel, new ThreeDaysGiftModel());
moduleManager.AddModel(ModelConst.RewardMulNewModel, new RewardMulNewModel());
}
moduleManager.AddModel(ModelConst.LoginAModel, new LoginAModel());
}
public static void AutoRegisterUICtrl()
{
ModuleManager moduleManager = ModuleManager.Instance;
@@ -98,7 +99,8 @@ namespace ScrewsMaster
moduleManager.AddUICtrl(UICtrlConst.RecordViewUICtrl, new RecordViewUICtrl());
moduleManager.AddUIType(UIConst.ThreeDaysGiftUI, typeof(ThreeDaysGiftUI));
moduleManager.AddUIType(UIConst.RewardMulNewUI, typeof(RewardMulNewUI));
}
moduleManager.AddUIType(UIConst.LoginAUI, typeof(LoginAUI));
}
public static void AutoRegisterCtrl()
{
@@ -146,7 +148,8 @@ namespace ScrewsMaster
moduleManager.AddCtrl(CtrlConst.RecordViewCtrl, new RecordViewCtrl());
moduleManager.AddCtrl(CtrlConst.ThreeDaysGiftCtrl, new ThreeDaysGiftCtrl());
moduleManager.AddCtrl(CtrlConst.RewardMulNewCtrl, new RewardMulNewCtrl());
}
moduleManager.AddCtrl(CtrlConst.LoginACtrl, new LoginACtrl());
}
public static void AutoRegisterUIType()
{
@@ -193,6 +196,7 @@ namespace ScrewsMaster
moduleManager.AddUIType(UIConst.RecordViewUI, typeof(RecordViewUI));
moduleManager.AddUICtrl(UICtrlConst.ThreeDaysGiftUICtrl, new ThreeDaysGiftUICtrl());
moduleManager.AddUICtrl(UICtrlConst.RewardMulNewUICtrl, new RewardMulNewUICtrl());
}
moduleManager.AddUICtrl(UICtrlConst.LoginAUICtrl, new LoginAUICtrl());
}
}
}
@@ -53,5 +53,6 @@ namespace ScrewsMaster
public const string RecordViewUI = "RecordViewUI";
public const string ThreeDaysGiftUI = "ThreeDaysGiftUI";
public const string RewardMulNewUI = "RewardMulNewUI";
public const string LoginAUI = "LoginAUI";
}
}
@@ -53,5 +53,6 @@ namespace ScrewsMaster
public const string RecordViewUICtrl = "RecordViewUICtrl";
public const string ThreeDaysGiftUICtrl = "ThreeDaysGiftUICtrl";
public const string RewardMulNewUICtrl = "RewardMulNewUICtrl";
public const string LoginAUICtrl = "LoginAUICtrl";
}
}