简体   繁体   中英

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

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

我不记得确切的细节,而是查看Application.SetUnhandledExceptionMode

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM