c# – 如何将全局异常处理程序添加到Metro风格应用程序?

前端之家收集整理的这篇文章主要介绍了c# – 如何将全局异常处理程序添加到Metro风格应用程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有任何特定方法可以将全局异常处理程序添加到Metro风格应用程序,就像App.Xaml.cs文件中的WP7中的LittleWatson一样?处理这个问题的最佳实践和模式是什么?

解决方法

UnhandledException event page解释了为什么你的例外没有被处理(强调我的):

This event is only used with exceptions encountered by the XAML
framework
. Exceptions encountered by other Windows Runtime components
or parts of the application that are not connected to the XAML
framework will not result in this event being raised.

它继续解释你应该在最特定的时间捕获异常.据我所知,Windows 8风格的应用程序中没有全局事件处理程序.

原文链接:https://www.f2er.com/csharp/101130.html

猜你在找的C#相关文章