- public MainForm(LoginForm frm)
- {
- this.loginForm = frm;
- InitializeComponent();
- ChangeTheme(Common.ThemeName);
- }
复制代码
我自己写了一个ChangeTheme的方法,进来系统之后,重新设置一下配色方案,但是明显感觉配色方案执行了两次,一次是系统自定义的,另外一次是我代码执行的,
有没有方法执行一次呢,
我在InitializeComponent();前加 this.c1ThemeController1.Theme = "Windows8Red";
代码在VS中不报错,但是无法运行,
请问正确的做法是什么?
|
|