winform 处理全局异常

我们在开发winform程序的时候经常需要处理异常,如果没处理好异常程序就会崩溃,影响用户体验。
所以防止程序在没处理到异常时能由一个全局的异常捕获处理,在winform的program文件里面我们可以添加全局异常捕获事件,然后处理异常。

winform 处理全局异常

在program的main方法里面设置异常处理方式,然后注册异常处理的两个事件:

1.设置异常处理方式

//处理未捕获的异常
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);

2.ThreadException 处理UI线程异常

Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);

Application_ThreadException方法:

static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
        {
            string str = "";
            string strDateInfo = "\r\n\r\n出现应用程序未处理的异常:" + DateTime.Now.ToString() + "\r\n";
            Exception error = e.Exception as Exception;
            if (error != null)
            {
                string logInfo = string.Format(strDateInfo + "异常类型:{0}\r\n异常消息:{1}\r\n异常信息:{2}\r\n", error.GetType().Name, error.Message, error.StackTrace);
                str = string.Format(strDateInfo + "异常类型:{0}\r\n异常消息:{1}\r\n",
                error.GetType().Name, error.Message);
            }
            else
            {
                str = string.Format("应用程序线程错误:{0}", e);
            }

            MessageBox.Show(str, "系统错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
        }

3.UnhandledException 处理非UI线程异常

AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);

CurrentDomain_UnhandledException 方法:

  private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
  {
      string str = "";
      Exception error = e.ExceptionObject as Exception;
      string strDateInfo = "出现应用程序未处理的异常:" + DateTime.Now.ToString() + "\r\n";
      if (error != null)
      {
          string logInfo = string.Format(strDateInfo + "Application UnhandledException:{0};\n\r堆栈信息:{1}", error.Message, error.StackTrace);
          str = string.Format(strDateInfo + "Application UnhandledException:{0};\n\r", error.Message);
      }
      else
      {
          str = string.Format("Application UnhandledError:{0}", e);
      }

      MessageBox.Show(str, "系统错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
  }

主题测试文章,只做测试使用。发布者:admin,转转请注明出处:http://onebyone.icu/2024/12/11/winform-%e5%a4%84%e7%90%86%e5%85%a8%e5%b1%80%e5%bc%82%e5%b8%b8/

Like (0)
Previous 2024年11月7日 上午8:50
Next 2024年12月20日 上午8:42

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注