private void 退出ToolStripMenuItem1_Click(object sender, EventArgs e)
{
DialogResult resault = MessageBox.Show("确定退出?", "退出", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);
if (resault==DialogResult.OK)
{
this.Close();
}
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-15
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-17
相关资源
相似解决方案