WPF UnhandledException阻止程序奔溃
2021-01-19 16:16
标签:ref title bar dex dom copy htm runtime system
WPF程序捕获全局异常,遇到未处理的异常,虽可以捕获,但是不能阻止程序退出。 只要在App.Config文件中添加 WPF UnhandledException阻止程序奔溃 标签:ref title bar dex dom copy htm runtime system 原文地址:https://www.cnblogs.com/lonelyxmas/p/12155408.html 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);
}
}
runtime>
legacyUnhandledExceptionPolicy enabled="1"/>
runtime>
上一篇:(16) WPF 导航控件
下一篇:WPF 禁用中文
文章标题:WPF UnhandledException阻止程序奔溃
文章链接:http://soscw.com/index.php/essay/44143.html