我想知道如何在运行时在 C sharp 中添加新的用户设置。如何动态插入新值?提前致谢
问问题
586 次
1 回答
0
设置可以代表用户偏好或应用程序需要使用的有价值的信息。
添加新设置:
Properties.Settings.Default.Properties.Add("property_name",Color.AliceBlue);
Properties.Settings.Default.Save();
编辑现有设置:
Properties.Settings.Default["property_name"]=Color.Green;
Properties.Settings.Default.Save();
检索
Color backColor = Properties.Settings.Default["property_name"] as Color;
删除现有设置:
Properties.Settings.Default.Properties.Remove("property_name");
Properties.Settings.Default.Save();
于 2021-01-26T11:06:57.183 回答