使用 wpf 访问 web.config
有谁能帮我弄清楚如何从 wpf 胖客户端打开 web.config 文件吗?我有一个 wpf 表单(不是 silverlight 应用程序),我希望能够浏览到目录 ( c:\test\web.config ),然后从所选 web.config 文件的 appSettings 部分加载自定义密钥。示例 将表单中的字段绑定到
web.config 文件中的 Path=Version 版本将被标识为:
<add key="Version" value="1.0 />
提前致谢
Would anyone be so kind as to help me figure out how to open a web.config file from a wpf thick client. I have a wpf form (not a silverlight app) that I would like have the ability to browse to a directory ( c:\test\web.config ) and then load custom keys from the appSettings section of the selected web.config file. Example Bind a field within my form to Path=Version
Within the web.config file Version would be identified as:
<add key="Version" value="1.0 />
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常更喜欢使用 ConfigurationManager 方法之一,如下所示:
http://msdn .microsoft.com/en-us/library/ms224437.aspx
或者有带有 XPath 的旧式 Xml:
或者较新的 LINQ to XML:
I usually prefer to use one of the ConfigurationManager methods like this one:
http://msdn.microsoft.com/en-us/library/ms224437.aspx
Or there is the old style Xml with XPath:
Or the newer LINQ to XML: