我制作了一个简单的 winforms 应用程序,其中包含复选框当我查看我想节省检查后,当用户关闭表单时重新开放它,它的仍检查。有什么办法吗?
答案1
您可以使用应用程序设置来保存应用程序状态。
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
Properties.Settings.Default.check = checkBox1.Checked;
Properties.Settings.Default.Save();
}
private void Form1_Load_1(object sender, EventArgs e)
{
checkBox1.Checked = Properties.Settings.Default.check;
}