tags:

views:

91

answers:

1

In a C# program I would like to display the context menu for a file.

For example: If the user clicked on the files name in my program, I would like to display the actual right click menu. By actual, I mean, the system context menu. I don't need programmatic access to the contents. I just need to display it.

Any ideas to get me started?

Thanks!

+2  A: 

This is a good article on the topic:

http://www.codeproject.com/KB/cs/shellContextMenu.aspx

BobbyShaftoe