if (MessageBox.Show("请您确认是否退出(Y/N)", "系统提示", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes)
            {
                try
                {
                    this.Dispose();
                    this.Close();
                }
                catch (System.Exception error)
                {//WinIO卸载失败异常
                    MessageBox.Show(error.Message, "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
            }
            else
            {
                return;
            }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2022-02-08
  • 2021-07-20
  • 2022-02-08
  • 2021-06-17
猜你喜欢
  • 2022-12-23
  • 2021-11-16
  • 2021-08-22
  • 2022-03-01
  • 2022-12-23
  • 2021-10-09
  • 2022-12-23
相关资源
相似解决方案