本文介绍了在文件图标添加状态图标在资源管理器,像Dropbox的或SVN在.NET的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我写在C#中的Windows服务应用程序与 FileSystemWatcher的

I'm writing a Windows service application in C# with FileSystemWatcher.

我怎样才能加状态图标文件和文件夹在Windows资源管理器类似Dropbox的或SVN怎么办呢?

How can I add status icons to files and folders in Windows Explorer similar to how Dropbox or SVN do it?

推荐答案

您应该制定一个覆盖图标处理程序和注册它到系统中。结果​​,
你可以找到C#编写的部分工作示例。结果
部分MSDN文档的并的。

You should develop an overlay icon handler and register it into the system.
Here you can find a partially working example written in C#.
Some MSDN documentation here and here.

这篇关于在文件图标添加状态图标在资源管理器,像Dropbox的或SVN在.NET的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 17:00