public void StartCustomBrowser() { try { _customBrowserForm = new CustomBrowser() { TopLevel = true }; _customBrowserForm.Show(); } catch (Exception exception) { TraceOps.Out(exception.ToString()); } }