Visual Studio表单中的复选框强制(由用户检查)

时间:2019-01-01 04:45:08

标签: c# visual-studio

我是Visual Studio的新手,想要在关闭表单或进行任何其他事件之前在表单中强制执行复选框(由用户检查)。我该怎么办?

1 个答案:

答案 0 :(得分:0)

if(checkbox.Checked)
{
     //add your conditions
}

else
{
      //Add conditions to stay on the same win form
}