码迷,mamicode.com
首页 > Windows程序 > 详细

WPF读写config配置文件

时间:2015-01-06 17:33:15      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:

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="D:\"/>  
5     <add key="NAME" value="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 = "WANGLICHAO"; 
  • cfa.Save(); 

WPF读写config配置文件

标签:

原文地址:http://www.cnblogs.com/fuchongjundream/p/4206314.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!