首页 > 代码库 > WPF读写config配置文件

WPF读写config配置文件

1. 在你的工程中,添加app.config文件。文件的内容默认为:

1 <?xml version="1.0" encoding="utf-8" ?>  2 <configuration>  3 </configuration>  

2.如果你想给程序配置一些参数,就在<configuration>标签中添加<appSettings>.例如下面:

1 <?xml version="1.0" encoding="utf-8" ?>  2 <configuration>  3   <appSettings>  4     <add key="Path" value="http://www.mamicode.com/D:/"/>  5     <add key="NAME" value="http://www.mamicode.com/123"/>  6   </appSettings>  7 </configuration>  

3.然后你在后台程序里需要的地方读写它就可以了。记住需要添加引用

  • using System.Configuration; 

4.读操作:

  • string strPath = ConfigurationManager.AppSettings["Path"]; 

5.写操作:

  • Configuration cfa = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); 
  • cfa.AppSettings.Settings["NAME"].Value =http://www.mamicode.com/ "WANGLICHAO"; 
  • cfa.Save(); 

WPF读写config配置文件