有人会非常友好地帮助我弄清楚如何从wpf胖客户端打开web.config文件。我有一个wpf表单(不是一个silverlight应用程序),我希望能够浏览到目录(c:\ test \ web.config),然后从所选web.config文件的appSettings部分加载自定义键。示例将表单中的字段绑定到Path = Version
在web.config文件中,Version将被标识为:
<add key="Version" value="1.0 />
提前致谢
答案 0 :(得分:4)
我通常更喜欢使用以下一种ConfigurationManager方法:
http://msdn.microsoft.com/en-us/library/ms224437.aspx
或者有XPath的旧式Xml:
XmlDocument webConfig = new XmlDocument();
webConfig.Load(dllConfigFileName);
XmlNode someNode = webConfig.SelectSingleNode("//configuration/appSettings/add[@key='someKey']");
或者更新的LINQ to XML:
XDocument document = XDocument.Load(configFileFullName);
XElement configurationElement = document.Element("configuration");
XElement appSettingsElement = configurationElement.Element("appSettings");
List<XElement> configSettings = new List<XElement>(appSettingsElement.Descendants("add"));