直接复制就可以用
DialogResult result =MessageBox.Show("您确认关闭当前窗口吗?","操作提示",MessageBoxButtons.YesNo,MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{
//关闭当前窗口
this.Close();
}
关闭窗体 this.Close();
关闭程序 Application.Exit();
this.close();
窗口会自动添加引用