In Visual Studio 2019, using Nuget
, I have installed Microsoft.Web.WebView2
package.
PM> Install-Package Microsoft.Web.WebView2 -Version 0.9.430
As explained on Web, I have installed new Microsoft Edge Chromium Canary
version (it is important).
Now, when I open the Toolbox, I don't see any WebView2
control.
Before that, I have installed WebView
control (old version that is working with old Edge browser).
After installing WebView
, the control has been visible immediately in Toolbox.
But this is not the case with WebView2
control.
I have tried to add in Toolbox all controls from Microsoft.Web.WebView2
package manually.
But Visual Studio refuses to load WebView2Loader.dll
found in following folder
C:\Users\bernard\.nuget\packages\microsoft.web.webview2\0.9.430\build\x86
I have also tried with DLL found in
C:\Users\bernard\.nuget\packages\microsoft.web.webview2\0.9.430\build\x64
Is there possible to install WebView2 control in Toolbox ?
If yes, how ?