我有一个 WPF 应用程序,我正在向其中添加一些顶级,捕获所有错误处理。我像这样处理 DispatcherUnhandledException 事件:
private void App_OnDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
{
if (_isHandlingError)
{
_log.Error("Critical unhandled error", e.Exception);
e.Handled = true;
return;
}
_isHandlingError = true;
var vm = _windsorContainer.Resolve<ErrorReporterViewModel>();
Dispatcher.Invoke(() =>
{
vm.Details = FailureMessageBuilder.CreateContent(e.Exception);
var view = new ErrorReporterView { DataContext = vm };
view.Show();
});
e.Handled = true;
NotifyOfException(e.Exception, vm.Description);
_isHandlingError = false;
}
问题是,对 Show()(或 ShowDialog)的调用永远不会返回,并且错误对话框永远不会显示。
可能是什么问题?