修改不同应用程序的settings.settings
我有一个控制台应用程序,当前正在 .settings 文件中存储一些设置数据。我想添加一个前端,最好使用 wpf,允许管理员修改设置数据。
使用 .settings 文件是个好主意,还是应该创建自定义 xml 文件并仅使用标准 xml 程序集来更新/修改数据?
感谢您的任何想法。
I have a console application and am currently storing some settings data in the .settings file. I would like to add a front-end, preferably using wpf, that allows administrators to modify the settings data.
Is it a good idea to utilize the .settings file, or should I create a custom xml file and just use the standard xml assemblies to update/modify the data?
Thanks for any thoughts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从另一个应用程序修改设置文件可能会更困难,您应该只使用自定义 XML 文件,除非您确实需要跟踪设置的范围(用户/应用程序)。如果您这样做,也许这会有所帮助 http://www.codeproject.com/KB/dotnet/神秘的配置.aspx
It will probably be harder to modify settings files from another application, you should just use a custom XML file unless you really need to track the scope of the settings (user/application). If you do maybe this will help http://www.codeproject.com/KB/dotnet/mysteriesofconfiguration.aspx