Reputation: 7780
Microsoft has recently released Edge browser which uses Chromium engine to render HTML. Is there a WinForms component which allows to embed it in a desktop application?
I'm aware of CefSharp for WinForms, just looking if there's something supported natively.
Upvotes: 5
Views: 7021
Reputation: 125197
The Microsoft Edge WebView2 control enables you to host web content in your application using Microsoft Edge (Chromium) as the rendering engine.
The control is available on the following programming environments:
Install prerequisites on your machine:
Create a Windows Forms Application.
Install WebView2 NuGet package in your project.
Drop an instance of the WebView2 from toolbox on your form.
Set the Source property to a valid URL like: Https://bing.com and run the application.
More information
Note: WebView2
will replace the WebView
control in the toolkit. WebView
has already been marked as obsolete.
Upvotes: 6