如何在 C# Windows 窗体应用程序中使用户可编辑设置文件
我正在创建我的第一个 Windows 窗体应用程序,一个要求是存在某种配置文件,客户端可以在记事本中编辑该文件。例如,配置文件可能具有以下 XML 结构:
<languages>
<language name="English" />
</languages>
应用程序在表单上生成语言组合框时访问该文件。如果客户愿意,他可以进去添加另一个
节点。
我尝试使用带有自定义配置部分的 app.config 文件。当我发布应用程序然后安装它时,[appname]/Application Files/[appname_version]/ 文件夹中的 [appname].exe.config.deploy 文件是可编辑的,但应用程序似乎不知道编辑。换句话说,如果我添加另一个
节点,应用程序不会将其显示在表单上。
我不确定我是否真的做对了。用户是否应该能够编辑 config.deploy 文件?如果不是,正确的使用场景是什么?我回想起过去的游戏有 .ini 文件,你可以在记事本中编辑这些文件!
I'm creating my first Windows Forms Application, and one requirement is that there is some sort of config file, which the client can edit in notepad. For example, the config file may have an XML structure of:
<languages>
<language name="English" />
</languages>
The application accesses the file when generating a combobox of languages on a form. If the client wishes, he could go in and add another <language>
node.
I've tried to use the app.config file, with a custom configuration section. When I publish the application and then install it, the [appname].exe.config.deploy file in the [appname]/Application Files/[appname_version]/ folder is editable, but the application doesn't seem to be aware of the edits. In other words, if I add another <language>
node, the application doesn't display it on the form.
I'm not sure if I'm actually doing any of this correctly. Are users supposed to be able to edit the config.deploy file? If not, what is the correct usage scenario? I'm thinking back to the old days of games having .ini files, which you could edit in Notepad!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的 xml 文件添加到项目 >选择文件&转到属性窗口>将 Action 构建为内容 >复制到输出目录以复制(如果较新)或始终复制。更改代码以从位于 exe 文件夹位置的 xml 文件中读取语言列表
Add your xml file to the project > select file & go to property window > Build Action as content > copy to output directory to Copy if newer or always. Change your code to read languages list from xml file located at exe folder location