I am using Process.Start() to popup a webpage in my WPF app. This way it opens in my default browser.
In HTML/Javascript, you can do window popups and the window won’t have menu bars, scrollbars, toolbars, etc. Is it possible to do this with Process.Start()?
What about creating a
ChildWindow(from the Extended Toolkit, or just another standard WPFWindow) containing aWebBrowserobject?You will get easily rid of borders, scrollbars…any control except the page (and you can also stretch it easily in the window!)…
…and than show your browser window as usual: