我试图在表单关闭时将布尔值保存到文件中,当它加载时我想要加载变量。我还想知道是否可以将多个布尔值存储到单个文件中。 我正在使用VB.NET,提前谢谢!
答案 0 :(得分:0)
您可以将它们保存到应用程序设置中。如果您转到解决方案的属性,只需根据需要制作示例:
FormLoad
if my.settings.checkbox1.text = "true" then
elseif my.settings.checkbox1.text = "false" then
end if
更改活动
if checkbox1.checked = true then
my.settings.Checkbox1.text = "true"
elseif checkbox1.checked = false then
my.settings.checkbox.text = false
end if
无法记住设置是否在my.settings下,现在无法查看。