0

I'm trying to capture an instance of the Shell32.ShellFolderView class that is embedded in a another application window.

Something like:

var folderView = Shell32.ShellFolderView.FromHwnd (hwnd);

I need to perform operations like browsing and etc ...

It's possible?

Vinicius Gonçalves
  • 2,514
  • 1
  • 29
  • 54

1 Answers1

1

There is no generic interface for everything that hosts a shell view.

Explorer, Internet Explorer and some 3rd-party applications register themselves so you can interact with them using the IShellWindows interface. It is accessible by everything from C++, C# to basic scripts.

Anders
  • 97,548
  • 12
  • 110
  • 164