WPF 创建 读取配置文件

1 首先在WPF应用程序创建App.config配置文件

刚创建好的配置文件



2 为配置文件添加节点



 
   
 

3读取配置文件

//string CurrentDirectory = Environment.CurrentDirectory;获取当前debug路劲
string xmlPath = ConfigurationManager.AppSettings["xmlPath"];

 

你可能感兴趣的:(WPF 创建 读取配置文件)