在WPF应用程序中处理未处理异常的最佳方法是什么?
答案 0 :(得分:13)
您可以使用DispatcherUnhandledException
:
XAML(App.xaml):
<Application x:Class="App.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="wndMain.xaml" DispatcherUnhandledException="Application_DispatcherUnhandledException">
Code Behind(App.xaml.cs / vb:
private void Application_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
{
// Handle error here
...
// Prevent default unhandled exception processing by WPF
e.Handled = true;
}
阅读more here。总是先做正确的错误处理量。不要只是让错误进入这种方法。