使设置值持久化
任何人都可以帮助我如何使我的应用程序中的设置持久化 当我在上次运行中使用此方法保存并
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.