Windows 窗体 UserSettings 未加载

发布于 2024-12-23 17:14:59 字数 267 浏览 1 评论 0原文

我在名为“ExchangeRate”的 Windows 表单应用程序中创建了一个用户设置,并将其设置为“1”,然后该值在运行时更新:

Properties.Settings.Default.ExchangeRate = 1.5;
Properties.Settings.Default.Save();

但是当我重新启动应用程序时,“ExchangeRate”值重置回“1”。

在这种情况下,如何解决此问题以加载我之前设置的值“1.5”?

I have create a user setting in my Windows form application named "ExchangeRate" and set it to "1", then the value is being updated at runtime:

Properties.Settings.Default.ExchangeRate = 1.5;
Properties.Settings.Default.Save();

But when I restart the application the "ExchangeRate" value reset back to "1".

How can I fix this issue to load the value I previously set "1.5" in this case?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

故事↓在人 2024-12-30 17:14:59

每次更改时都必须同步设置。

如果您更改了某个值,只需检查它是否已在 app.config 文件中更改,该文件将类似于您的 applicationname.exe.config

You have to synchronize your settings every time you change.

If you have changed a value just checked whether it has been changed in the app.config file which will be like your applicationname.exe.config

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