c#禁止窗口關閉方法
(1)直接將
窗口樣式中的ControlBox設置爲False,可以去掉右上角的十字
(2)重寫關閉事件
private void form 1 _ form closing(object sender,form closing eventagers e)
{
dialog result;
result = MessageBox。Show("你確定要退出嗎?",“退出”,messageboxbuttons.okcancel,messagebox icon . question);
if (result == DialogResult。好)
{
申請。exit thread();
}
else
{
e . Cancel = true;
}
}
0條評論