gpt4 book ai didi

c# - MVVM 中的全局异常处理

转载 作者:太空狗 更新时间:2023-10-30 01:31:43 25 4
gpt4 key购买 nike

有没有办法用 MVVM 模式实现全局异常处理。在我现有的情况下,每当 ViewModel 内部发生错误时,应用程序都不会崩溃,只是“隐藏”在导致错误的代码之后发生的其余绑定(bind)(当然这对最终用户来说是非常误导的,而且不是真的,并且永远不应该那样发生)。我不想为 viewModel 中的每个操作都实现 try catch,而且我不喜欢错误异常的静默方式,我真的很想为 WPF 应用程序实现一种处理全局错误的方法。有没有办法用 MVVM 做到这一点?

最佳答案

经过长时间的斗争,我终于找到了一种非常简单的方法来在 ViewModel 中实现处理异常。虽然创建一个继承自 DefaultTraceListener 的 BindingListener 无疑是在 Debug模式下查找绑定(bind)错误的好方法,但在标准模式下运行解决方案时,这不会捕获 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)));
}

关于c# - MVVM 中的全局异常处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40051429/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com