如何通过程序本身使表单关闭?

时间:2018-05-26 21:39:47

标签: c#

我有一个带有退出按钮的Windows应用程序表单。在关闭窗口之前需要一个引脚。除了我提供的退出按钮之外,我怎么能阻止用户以任何其他方式关闭它?这是一个员工时钟。

1 个答案:

答案 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 
    }