Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我form从颜色托盘更改运行时的颜色。
form
forms
在应用程序中创建不必要的静态变量可能会导致很多性能和内存问题。下面将是满足您需求的一个很好的解决方案。
将颜色存储为应用程序启动时的设置值
Properties.Settings.Default.FormBackGroundColor = Color.Red; //your color here
在所有其他窗口初始化使用下面的行
this.BackColor = Properties.Settings.Default.FormBackGroundColor;