在项目 App.xaml 文件下 => Application 节点=> 添加 DispatcherUnhandledException="Application_DispatcherUnhandledException" 属性
在App.xaml.cs下添加方法
void Application_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
{
var comException = e.Exception as System.Runtime.InteropServices.COMException;
if (comException != null && comException.ErrorCode == -2147221040)
e.Handled = true;
}
本来只是想自己做下笔记,所以写的不是特别清楚。看阅读量比较大特意重新编辑,希望能帮到大家。
.