awesomium.dll 在 XP 而非 Windows 7 上导致我的 WPF 应用程序崩溃
我创建了一个 WPF 应用程序,有时会因应用程序错误而崩溃,modname = awesomium.dll
我的 app.xaml.cs 中有全局 catch 和 try 块,
public App()
: base()
{
this.Dispatcher.UnhandledException += OnDispatcherUnhandledException;
AppDomain currentDomain = AppDomain.CurrentDomain;
currentDomain.UnhandledException += OnAppDomainUnhandledException;
}
但 awesomuim.dll 错误似乎绕过了此错误并使应用程序崩溃,
我们知道吗如何停止 XP 上的随机崩溃或为 Awesomium 添加应用程序范围的错误捕获器
I have created a WPF app that sometimes crashes with application error, modname = awesomium.dll
I have global catch and try blocks in my app.xaml.cs
public App()
: base()
{
this.Dispatcher.UnhandledException += OnDispatcherUnhandledException;
AppDomain currentDomain = AppDomain.CurrentDomain;
currentDomain.UnhandledException += OnAppDomainUnhandledException;
}
But the awesomuim.dll error seems to bypass this and crash the app regardless
Do we know how to either stop the random crashes on XP or add an application wide error catcher for Awesomium
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不记得确切的细节,但请查看 <代码>Application.SetUnhandledExceptionMode。
I can't recall the exact details, but look at
Application.SetUnhandledExceptionMode
.