x-out out of form时,Windows窗体会显示消息框?

时间:2013-08-20 21:10:34

标签: c# visual-studio-2010 windows-forms-designer

我想知道是否有任何方法来设置Windows窗体,以便当用户单击红色X按钮时,它将显示一个消息框,其中包含“您确定要”吗?退出?”是否有Windows形式的certian事件或我需要做的其他一些工作?

1 个答案:

答案 0 :(得分:1)

FormClosing += new FormClosingEventHandler(Form1_FormClosing);

void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
    if (MessageBox.Show("...","...", MessageBoxButtons.OKCancel) == DialogResult.OK)
        e.Cancel = true;
}