Reputation: 5086
I need to add items to explorer context menu. When files/folder are selected different menu items should be visible in context menu.
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
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