问题描述
tortoiseSVN有一个外壳钩子,可以在文件上添加覆盖图标.
他们创建了一个单独的开源项目,以在其通用项目(tortoiseSvn,tortoiseGit等)中使用
tortoiseSVN has a shell hook that add overlay icons on files.
They create a separate open source project to use it in their commons projects (tortoiseSvn,tortoiseGit,etc)
我已经从Google代码下载了安装程序.msi 安装了挂钩处理程序的
我有自己的版本"IShellIconOverlayIdentifier :: IsMemberOf",用于处理程序.
我怎么都在一起?
i've download the installer .msi from google code that install the hooker handler
i've got my own version of "IShellIconOverlayIdentifier::IsMemberOf" that use for the handlers
how i grab all together ?
推荐答案
请注意,TortoiseOverlays处理程序不会减少您必须做的工作:您必须实现自己的叠加处理程序并使其完全工作.只有这样,您仍然可以使用TortoiseOverlays处理程序:
Please note that the TortoiseOverlays handler does not reduce the work you have to do: you have to implement your own overlay handler and get it to work fully. Only then can you make use of the TortoiseOverlays handler if you still want to:
TortoiseOverlays处理程序的目的是共享Windows Shell具有的处理程序插槽(限制为15个).这不是帮助您实现叠加处理程序.
The purpose of the TortoiseOverlays handler is to share the handler slots the windows shell has (limited to 15). It's not to help you implement overlay handlers.
一旦您有自己的处理程序,就可以在注册您自己的处理程序的地方简单地更改注册表项.之后,TortoiseOverlays将加载您的叠加层处理程序.
Once you have your own handler working, you can simply change the registry keys where you register your own handler. After that, TortoiseOverlays will be loading your overlay handler.
这篇关于如何在我自己的处理程序中使用TortoiseOverlays的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!