Home > Mobile >  No WebBrowser Control in Toolbox Winforms .NET 6
No WebBrowser Control in Toolbox Winforms .NET 6

Time:08-31

Is there a recommended Workarround for that missing Webbrowser element? In the old WinForms (until .NET FW 4.8), it was found in the toolbox.

CodePudding user response:

As Poul Bak said. The solution is to search for webview2 in nuget, and then install it. The webview2 control will appear in the toolbox, and then drag and drop.Microsoft's official documentation link.Hope it helps you.

CodePudding user response:

I don't have a reference from Microsoft for you, but I believe webbrowser is not available in .NET 5 . You'd need to switch to webview2, which uses chromium Edge.

  • Related