使设置值持久化

发布于 2024-12-05 11:04:03 字数 273 浏览 4 评论 0原文

任何人都可以帮助我如何使我的应用程序中的设置持久化 当我在上次运行中使用此方法保存并

my.Settings.setting_name= some_value
my.Settings.save()

获取值时,

some_value=my.Settings.setting_name

我仍然在 IDE 设置选项中看到旧值 我怎样才能使更改即使在 VS IDE 中也能反映出来,

谢谢

can anyone help me with how to make the settings in my app persistent
When i save in the previous run using this

my.Settings.setting_name= some_value
my.Settings.save()

when getting the values using this

some_value=my.Settings.setting_name

i still see the old values in the IDE settings options
How can i make the changes reflect even in the vs ide

thanks

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

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

发布评论

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

评论(1

池木 2024-12-12 11:04:03

IDE 将始终显示应用程序的默认设置,并将其复制到可执行文件所在文件夹中的 .exe.config 文件中。在运行时,Settings.Save() 调用会将新设置保存在位于 'UserProfile'\Application Data\'Company_Name'\_mangled\ 的 User.Config 文件中版本\文件夹。

我使用的是Windows XP,其他版本可能会有所不同。

The IDE will always show the default settings for your application which it copies to .exe.config file in the same folder as your executable. At runtime, the Settings.Save() call will save the new settings in a User.Config file located in 'UserProfile'\Application Data\'Company_Name'\_mangled\Version\ folder.

I'm on Windows XP and other versions may be different.

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