我有一个带有退出按钮的Windows应用程序表单。在关闭窗口之前需要一个引脚。除了我提供的退出按钮之外,我怎么能阻止用户以任何其他方式关闭它?这是一个员工时钟。
答案 0 :(得分:1)
试试这个
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
e.Cancel = true; // prevent the closing
MessageBox.Show("Sorry , you have to enter the pin first"); // display a message to force him to enter the pis first
}