WPF UnhandledException阻止程序奔溃
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF UnhandledException阻止程序奔溃相关的知识,希望对你有一定的参考价值。
原文:WPF UnhandledException阻止程序奔溃
WPF程序捕获全局异常,遇到未处理的异常,虽可以捕获,但是不能阻止程序退出。
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { if (e.ExceptionObject is System.Exception) { Exception ex = (System.Exception)e.ExceptionObject; MessageBox.Show(ex.Message); } }
只要在App.Config文件中添加
<runtime> <legacyUnhandledExceptionPolicy enabled="1"/> </runtime>
以上是关于WPF UnhandledException阻止程序奔溃的主要内容,如果未能解决你的问题,请参考以下文章
有没有像 Window.ShowDialog() WPF 这样阻止 UI 线程