awesomium.dll 在 XP 而非 Windows 7 上导致我的 WPF 应用程序崩溃

发布于 2024-12-02 06:50:58 字数 486 浏览 2 评论 0原文

我创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多彩岁月 2024-12-09 06:50:58

我不记得确切的细节,但请查看 <代码>Application.SetUnhandledExceptionMode

I can't recall the exact details, but look at Application.SetUnhandledExceptionMode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文