关于WPF程序错误提示

常常遇到错误,程序就会自动关闭。

如今提供一种方法,让程序出现错误的时候,不关闭程序。并提醒用户。

方法如下:

一、在程序的App.xaml文件的节点Application上,添加属性

	DispatcherUnhandledException="App_OnDispatcherUnhandledException"

二、在App.xaml.cs文件中添加代码

	private void App_OnDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
        {
           
           
          
            MessageBox.Show("程序中出现了严重错误,请联系系统开发商!" + e.Exception.Message);
            e.Handled = true;
        }

注:

//程序出错的时候,不让程序直接跳出页面
           
  // throw new NotImplementedException();
           
  //在Application_DispatcherUnhandledException中集中处理异常
三、完成

你可能感兴趣的:(异常处理)