So I searched for a guide of how to shell integrate your application (add it to the right click menu) with C#, but I couldn't find how to do that only for a specific file type. I know it is possible because WinRar does that. So how can I do that?
|
feedback
|
|
There are usually two-ish ways you can implement this.
You will find some talk about not using .NET to write a Shell Handler**. This applies only to older versions of .NET. Its all ok with .NET4. This article should help you with a Context Menu Handler in .NET4 ** Why was it not recommend: When you write a shell handler, it gets called by the host process (typically windows explorer), but also things like FileOpenDialogs and FolderBrowser dialogs. So a problem would occur if you wrote a shell extension in .NET 2.0, and a .NET 1.1 app called a File Open Dialog and then your .NET 2.0 shell handler would be called into and your .NET 1.1 app which has an older CLR and there would be version conflict. So I'm pleased to have found out finally this has been fixed somehow in .NET 4 =) | |||||||||||
feedback
|
|
Windows Explorer right click menus are controlled by the registry. Specifically, the HKEY_CLASSES_ROOT hive. A good way to get a good idea how everything works in there is to check out Once you get a grasp on what you need to add to integrate your application, you can check out the Microsoft.Win32 namespace for classes to help manipulate the registry via c# code. | |||
|
feedback
|