How can I create my custom Shell Context Handlers for Windows?

前端 未结 7 575
滥情空心
滥情空心 2020-12-17 04:39

Problem

Language: C# 2.0 or later


I would like to register context handlers to create menues when the user right clicks certain files (in my case *.e

相关标签:
7条回答
  • 2020-12-17 05:09

    This is not a good idea because of potential dependency issues between different versions of the .NET Framework. Your shell extension could be expecting one version, while a different version may have already been loaded by the application that's currently running.

    This thread contains a good summary of the situation.

    0 讨论(0)
  • 2020-12-17 05:14

    While others already mentioned that writing shell extensions in pure .NET is a bad idea due to framework conflicts, you should still note that:

    1. There are 3rd party drivers out there (see Eldos or LogicNP) that do the unmanaged side for you, allowing you to write managed code that talks to the native driver, thus preventing shell-related CLR version conflicts.

    2. A recent MSDN article mentioned that Microsoft has solved this problem for the CoreCLR, as used by Silverlight. They've accomplished this by allowing multiple versions of the CLR to run in the same process, thus fixing the problem. The author further stated that this fix in Silverlight will be rolled into future versions of the full CLR. (Meaning, in the future, it will be quite feasible to write shell extensions in managed code.)

    0 讨论(0)
  • 2020-12-17 05:16

    As others have pointed out, shell extensions are not practical in windows development currently.

    I asked a similar question recently which was answered with a link to a guide to do exactly what I wanted to do

    0 讨论(0)
  • 2020-12-17 05:20

    Aside from the caveats that have been mentioned concerning the implementation of shell extensions in managed code, what you'd basically need to do is the following:

    First, create a COM component in C# that implements the IShellExtInit IContextMenu interfaces. How to create COM components in C# is described here. How to implement the necessary interfaces is described in this article. While the description is for a C++ implementation, you can apply that knowledge to you C# version.

    Your COM component will have GUID called the Class-ID or CLSID. You need to register that ID with your file type as a context-menu shell extension:

    HKEY_CLASSES_ROOT\.eic\ShellEx\ContextMenuHandlers\MyShellExt
        (Default) -> {YOUR-COMPONENTS-CLSID}
    

    Also make sure that you registered your component correctly as described in the C# COM tutorial. You should find it in the registry under

    HKEY_CLASSES_ROOT\CLSID\{YOUR-COMPONENTS-CLSID}
        InprocServer32
            (Default) -> C:\WINDOWS\system32\mscoree.dll
            Class -> YourImplClass
            assembly -> YourAssembly, version=..., Culture=neutral, PublicKey=...
            ...
    

    Good luck...

    0 讨论(0)
  • 2020-12-17 05:21

    As the prior comments mention, it isn't the best idea to write shell extensions in managed languages, but I thought I'd share an Open Source project that is doing just that :)

    ShellGlue is a managed shell extension that is actually quite helpful. The source also might be helpful to you if you're interested in pursuing writing a shell extension in C/C++.

    0 讨论(0)
  • 2020-12-17 05:22

    Resist writing Shell Extensions in managed languages - there are a multitude of things that could go bang if you pursue this route.

    Have a browse through this thread for more details. It contains links to do it if really want, and sagely advice of why it can be done, but shouldn't.

    http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/1428326d-7950-42b4-ad94-8e962124043e/

    You're back to unmanaged C/C++ as your only real tools here.

    0 讨论(0)
提交回复
热议问题