有没有办法用MVVM模式实现全局异常处理.在我现有的情况下,每当ViewModel内部发生错误时,应用程序不会崩溃,只是“隐藏”导致错误的代码之后发生的其余绑定(当然这对最终用户来说非常误导,而不是真的,绝不应该这样发生).我不想为viewModel中的每个操作实现try catch,我不喜欢错误异常的无声方式,我真的很想为
WPF应用程序实现一种处理全局错误的方法.有没有办法用MVVM做到这一点? 最佳答案 经过长时间的战斗,我终于找到了一种在ViewModel中实现处理异常的简单方法.虽然创建一个继承自DefaultTraceListener的BindingListener当然是在调试模式下查找绑定错误的好方法,但是当运行解决方案是标准模式时,这不会捕获ViewModel内部发生的异常.但是AppDomain.CurrentDomain.FirstChanceException会.
App.xaml.cs:
AppDomain.CurrentDomain.FirstChanceException += new EventHandler<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs>(CurrentDomain_FirstChanceException);
private void CurrentDomain_FirstChanceException(object sender, FirstChanceExceptionEventArgs e)
{
Dispatcher.BeginInvoke(new Action(() => MessageBox.Show("Error Occurred \n\r" + e.Exception.Message + "\n\r" + e.Exception.StackTrace, "ERROR", MessageBoxButton.OK, MessageBoxImage.Error)));
}