I use the WebBrowser-Control in my WPF-Application:
<WebBrowser x:Name="webBrowser">
</WebBrowser>
When I load a Document which contains a Link and the User clicks on this Link, the Link will be loaded in the old InternetExplorer instead of the Defaultbrowser. Is it possible to change this behaviour?
You can perhaps use the OnNavigating-Event to process the Click yourself.