Amir Rezaei
Amir Rezaei

Reputation: 5086

Windows Explorer Menu using C#

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!

Upvotes: 1

Views: 690

Answers (1)

Dirk Vollmar
Dirk Vollmar

Reputation: 176159

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).

Upvotes: 2

Related Questions