当我从项目属性设置选项卡中更改它时,我似乎无法让app.config获取新的设置值。
我尝试清理项目并重新编译,但这没有帮助。
有什么想法吗?
答案 0 :(得分:0)
您可以使用应用程序设置...它适用于VS 2005
例如:
创建新设置:项目菜单 - >属性 - >设置 - >创建如下设置
Name Type Scope Value
myLoc System.Drawing.Point User 2;2
应用于应用
在Form_Load
时读取设置Button1.Location = My.Settings.myLoc
更改并保存设置
My.Settings.myLoc = Button1.Location
My.Settings.Save()