fix:1、添加主题更换。2、修复bug

This commit is contained in:
2026-06-16 10:22:11 +08:00
parent 13f8d572c4
commit 19efcb09fa
45 changed files with 877 additions and 323 deletions
@@ -57,6 +57,7 @@ namespace ChillConnect
public const string StatementViewCtrl = "StatementViewCtrl";
public const string ArrowGameCtrl = "ArrowGameCtrl";
public const string GameAgainCtrl = "GameAgainCtrl";
public const string ArrowThemeCtrl = "ArrowThemeCtrl";
}
}
@@ -57,6 +57,7 @@ namespace ChillConnect
public const string H5Model = "H5Model";
public const string ArrowGameModel = "ArrowGameModel";
public const string GameAgainModel = "GameAgainModel";
public const string ArrowThemeModel = "ArrowThemeModel";
}
}
@@ -60,6 +60,7 @@ namespace ChillConnect
moduleManager.AddModel(ModelConst.H5Model, new H5Model());
moduleManager.AddModel(ModelConst.ArrowGameModel, new ArrowGameModel());
moduleManager.AddModel(ModelConst.GameAgainModel, new GameAgainModel());
moduleManager.AddModel(ModelConst.ArrowThemeModel, new ArrowThemeModel());
}
@@ -118,6 +119,7 @@ namespace ChillConnect
moduleManager.AddUICtrl(UICtrlConst.H5UICtrl, new H5UICtrl());
moduleManager.AddUICtrl(UICtrlConst.ArrowGameUICtrl, new ArrowGameUICtrl());
moduleManager.AddUICtrl(UICtrlConst.GameAgainUICtrl, new GameAgainUICtrl());
moduleManager.AddUICtrl(UICtrlConst.ArrowThemeUICtrl, new ArrowThemeUICtrl());
@@ -179,6 +181,7 @@ namespace ChillConnect
moduleManager.AddCtrl(CtrlConst.H5Ctrl, new H5Ctrl());
moduleManager.AddCtrl(CtrlConst.ArrowGameCtrl, new ArrowGameCtrl());
moduleManager.AddCtrl(CtrlConst.GameAgainCtrl, new GameAgainCtrl());
moduleManager.AddCtrl(CtrlConst.ArrowThemeCtrl, new ArrowThemeCtrl());
}
@@ -238,6 +241,7 @@ namespace ChillConnect
moduleManager.AddUIType(UIConst.H5UI, typeof(H5UI));
moduleManager.AddUIType(UIConst.ArrowGameUI, typeof(ArrowGameUI));
moduleManager.AddUIType(UIConst.GameAgainUI, typeof(GameAgainUI));
moduleManager.AddUIType(UIConst.ArrowThemeUI, typeof(ArrowThemeUI));
}
}
+1
View File
@@ -56,6 +56,7 @@ namespace ChillConnect
public const string StatementViewUI = "StatementViewUI";
public const string ArrowGameUI = "ArrowGameUI";
public const string GameAgainUI = "GameAgainUI";
public const string ArrowThemeUI = "ArrowThemeUI";
}
}
@@ -57,6 +57,7 @@ namespace ChillConnect
public const string StatementViewUICtrl = "StatementViewUICtrl";
public const string ArrowGameUICtrl = "ArrowGameUICtrl";
public const string GameAgainUICtrl = "GameAgainUICtrl";
public const string ArrowThemeUICtrl = "ArrowThemeUICtrl";
}
}