1

I need to add items to explorer context menu. When files/folder are selected different menu items should be visible in context menu.

  1. Sub-menus
  2. Menu icons
  3. Support to interact with different file types
  4. Support multi selected files and folders

I have read about IContext. There is no native support in .NET framework, but I appreciate sample code that uses WIN32 API or implements IContext written in C# (No matter framework version).

MS.Net 4.0 side-by-side

The following question is not what I'm looking for!

Community
  • 1
  • 1
Amir Rezaei
  • 4,948
  • 6
  • 33
  • 49

1 Answers1

2

To get this working robustly in managed code you will have to use .NET 4.0.

The All-In-One Code Framework contains an example for managed shell extensions (CSShellExtContextMenuHandler).

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Dirk Vollmar
  • 172,527
  • 53
  • 255
  • 316