WPF 警惕使用 Dispatcher.InvokeShutdown 方法退出应用 将不触发 Application.Exit 事件
先来说说 Dispatcher.InvokeShutdown 和 Application.Current.Shutdown 的区别。在调用 Application.Current.Shutdown 方法时,将会触发 Application.Current.Exit
事件,以及在框架内调用 Dispatcher.InvokeShutdown
方法,且触发 Dispatcher.ShutdownFinished
事件
在调用 Dispatcher.InvokeShutdown
系列方法,包括 Dispatcher.BeginInvokeShutdown
等时,将不触发 Application.Exit
事件,只触发 Dispatcher.ShutdownFinished
事件
如此可以看到,调用 Application.Current.Shutdown 方法是包含了 Dispatcher.InvokeShutdown
方法的,能比较符合开发者预期的触发各个退出事件
我写了一个 Demo 用来方便让大家了解这两个方法触发的差别,代码放在github 和 gitee 欢迎访问
可以通过如下方式获取本文的源代码,先创建一个空文件夹,接着使用命令行 cd 命令进入此空文件夹,在命令行里面输入以下代码,即可获取到本文的代码
git init
git remote add origin https://gitee.com/lindexi/lindexi_gd.git
git pull origin fe31b73707f46f753976c276bc3aea74e85f9127
以上使用的是 gitee 的源,如果 gitee 不能访问,请替换为 github 的源。请在命令行继续输入以下代码
git remote remove origin
git remote add origin https://github.com/lindexi/lindexi_gd.git
git pull origin fe31b73707f46f753976c276bc3aea74e85f9127
获取代码之后,进入 HoyebenawlerWegemnardicheba 文件夹
博客园博客只做备份,博客发布就不再更新,如果想看最新博客,请访问 https://blog.lindexi.com/
如图片看不见,请在浏览器开启不安全http内容兼容
本作品采用知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议进行许可。欢迎转载、使用、重新发布,但务必保留文章署名[林德熙](https://www.cnblogs.com/lindexi)(包含链接:https://www.cnblogs.com/lindexi ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请与我[联系](mailto:lindexi_gd@163.com)。