Problem:
I have wpf webbrowser controll and FTP server.
In code:
wpfWebbrowserControll.Soure = new Uri (ftpUri)
Then in wpfWebbrowserControll shown all FTP server content
But then – when i click on a folder, windows explorer opens new window with folders content (its a problem)
I need do all only in my controll!
Ps: when wpfWebbrowserControll.Soure = new Uri("C:\\") – all work like i want
thanks
When WebBrowser loads ftp page it actually shows you COM object which implements IShellFolderViewDual3 COM interface, so the idea is to intercept DefaultVerb and update WebBrowser source.