it is a common requirement these days to have a webbrowser control in a Windows application. For this we can use the Internet Explorer control. But since the IE is very limited, now there is the possibility to have Edge as control, but it needs at least Windows 10 version 1803 or 1809.
Please see this page: https://docs.microsoft.com/en-us/window ... ms/webview
And today I was able to make it work in a WPF application written in pure X#: The code is really simple:
Code: Select all
oWebView := WebView{}
oWebView:Name := "WebBrowser"
https://www.nuget.org/packages/Microsof ... 0-preview3
https://www.nuget.org/packages/Microsof ... 0-preview3
Unfortunately until now I was not able to make work the WinForms version - it would be cool thing to add such a control as OLE control in VO applications.
Wolfgang