首页 > 代码库 > 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配置文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。