开发者

awesomium.dll crashes my WPF application on XP not Windows 7

开发者 https://www.devze.com 2023-04-01 04:03 出处:网络
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

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.Unhandl开发者_如何学CedException += 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


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

0

精彩评论

暂无评论...
验证码 换一张
取 消