public void OpenUrl([NotNull] string url) { if (url == null) throw new ArgumentNullException(nameof(url)); if (_webBrowserForm == null || _webBrowserForm.IsDisposed) _webBrowserForm = new WebBrowserForm(_serviceProvider); _webBrowserForm.EnsureVisible(); _webBrowserForm.NavigateTo(url); }
public void OpenUrl([NotNull] string url) { if (url == null) { throw new ArgumentNullException("url"); } if (_webBrowserForm == null || _webBrowserForm.IsDisposed) { _webBrowserForm = new WebBrowserForm(_serviceProvider); } _webBrowserForm.EnsureVisible(); _webBrowserForm.NavigateTo(url); }
public JBrowserFormService(WebBrowserForm form) { _form = form; }