I'm building an a WPF app that uses the WebBrowser control.
I'm struggling on a couple of points:
How to get the current progress of a download from the control. The WinForms WebBrowser control raises ProgressChange events - how can I relicate this feature with the WPF variant?
How to capture links that are trying to open in a new window. Again the Winforms WebBrowser had a NewWindow event. I could use this to stop IE being started and to open the link in the same window. Is it possible to do this with the WPF varaiant?