0

我有一个 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)的调用永远不会返回,并且错误对话框永远不会显示。

可能是什么问题?

4

1 回答 1

0

您是否已将您的活动附加到应用程序中?

cApp.Dispatcher.UnhandledException += new DispatcherUnhandledExceptionEventHandler(Dispatcher_UnhandledException);
                cApp.InitializeComponent();
                cApp.Run(new MainWindow());

接着

private static void Dispatcher_UnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
        {
...e.Exception.Message
}
于 2013-08-16T13:45:03.357 回答