如何处理Windows Forms程序中未处理的异常
如果Windows Forms程序中有未被捕获的异常,会导致程序崩溃并且给用户造成不良的印象。例如下面的程序,模拟了一个未捕获的异常:
private void button1_Click(object sender, EventArgs e)
{ throw new Exception(); }
点击Exception 按钮,会弹出如下默认窗口
Windows Forms提供了两个事件来处理未捕获的异常发生时的情况,分别是 Application.ThreadException和AppDomain.UnhandledException事件,前者用来处理UI线程中的异常,后者处理其他线程中的异常。要使程序使用自定义的事件来处理异常,可以使用如下代码:
static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException); AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { MessageBox.Show("抱歉,您的操作没有能够完成,请再试一次或者联系软件提供商"); LogUnhandledException(e.ExceptionObject); } static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e) { MessageBox.Show("抱歉,您的操作没有能够完成,请再试一次或者联系软件提供商"); LogUnhandledException(e.Exception); } static void LogUnhandledException(object exceptionobj) { //Log the exception here or report it to developer } }
此时运行该程序的结果如下: