如何在 C# Windows 窗体应用程序中使用户可编辑设置文件

发布于 2024-12-17 17:57:46 字数 593 浏览 2 评论 0原文

我正在创建我的第一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┈┾☆殇 2024-12-24 17:57:46

将您的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文