ConfigurationManager不在app.config中保存值

时间:2016-04-01 13:43:05

标签: c# winforms system.configuration

我有这个声明,应该在我的配置中设置一个键的值:

ConfigurationManager.AppSettings["Volume"] = volumeNumSlider.Value.ToString();

但是当我重新启动应用程序时它没有保存值。

这是我的app.config:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
   <appSettings>
       <add key="Volume" value="7"/>
       <add key="Keyval" value="Z"/>
   </appSettings>
</configuration>

1 个答案:

答案 0 :(得分:5)

不会更新它,您已将更改保存回配置文件:

Configuration configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
configuration.AppSettings.Settings["Volume"].Value = volumeNumSlider.Value.ToString();
configuration.Save(ConfigurationSaveMode.Modified);

ConfigurationManager.RefreshSection("appSettings");