博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WPF Application添加全局异常处理
阅读量:5131 次
发布时间:2019-06-13

本文共 783 字,大约阅读时间需要 2 分钟。

1.取消在App.xaml中设置StartUpUrl

2.在后台的APP.Xaml.cs如下设置,先绑定异常处理的handle,再设置StartUpUrl,可以实现在前台设置一样的效果   

public App()        {            App.Current.DispatcherUnhandledException += Current_DispatcherUnhandledException;            AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;            this.StartupUri = new Uri("MainWIndow.xaml", UriKind.Relative);        }        void Current_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)        {            throw new NotImplementedException();        }        void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)        {            throw new NotImplementedException();        }

 

转载于:https://www.cnblogs.com/Dunk/p/4174108.html

你可能感兴趣的文章
Elasticsearch之中文分词器
查看>>
外连接OUTER JOIN(三十五)
查看>>
初学XPath,其实很简单
查看>>
(一)Redis初学教程之安装篇
查看>>
JAVA作业-简易计算器
查看>>
继续前进
查看>>
SharePoint2010 对象模型 关联列表
查看>>
python下的selenium和PhantomJS
查看>>
分享一个IIS日志分析工具-LogParse
查看>>
Ignatius and the Princess IV (水题)
查看>>
C#导入导出Excele数据
查看>>
html table导出到Excel中,走后台保存文件,js并调用另保存
查看>>
ccf模板生成
查看>>
Exadata V2 Battery Replacement
查看>>
Oracle数据库案例整理-Oracle系统执行时故障-内存过少导致分配共享内存失败
查看>>
Android Gradle Task-中文
查看>>
hiho一下第91周《Events Arrangement》(前半部分)
查看>>
Activity返回值[转]
查看>>
1_dbworld
查看>>
"%Error opening tftp://255.255.255.255/network config"
查看>>