Referring to the documentation here:
https://www.essentialobjects.com/doc/webbrowser/start/winform.htmlAfter the above steps, you can use the newly added WebView component in your code directly. For example:We have been using your product for over a decade and never used the WebView control. So, we have always done:
webControl.WebView.LoadUrl(UrlTextBox.Text);
instead of:
webView1.Url = UrlTextBox.Text;
After upgrading to 2024 (previous version was 2019), we found that the loaded page was "somewhat frozen" (as in, it does not accept UI interaction). Tabs work. When we switched to using the WebView control, it worked.
Should we using the WebView control that gets attached to the form instead of the WebView property of the web control?