发布日期 2022年08月23日

DotNetBrowser 2.16.1

What’s new

We’ve added the possibility to create IEngine asynchronously:

public Form1()
{
    InitializeComponent();
    EngineFactory.CreateAsync(new EngineOptions.Builder()
    {
        RenderingMode = RenderingMode.HardwareAccelerated
    }.Build()).ContinueWith(t =>
    {
        engine = t.Result;
        browser = engine.CreateBrowser();
        browserView.InitializeFrom(browser);
        browser.Navigation.LoadUrl("google.com");
    }, TaskScheduler.FromCurrentSynchronizationContext());
}

Quality enhancement

  • Fixed the issue when IME caused unexpected application termination in Off-screen rendering mode.

Request evaluation license
Download DotNetBrowser 2.16.1 (.NET Framework)
Download DotNetBrowser 2.16.1 (.NET Core)

Go Top