Add status icons over file icons in Explorer, like Dropbox or SVN in .NET

不打扰是莪最后的温柔 提交于 2019-12-18 10:54:44

问题


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

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


回答1:


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.




回答2:


I've never play with this, but I think it's the right way.

Custom Folder

First make the folder a System Folder, then create a Desktop.ini file and apply the change inside.

[.ShellClassInfo]
InfoTip=@Shell32.dll,-12690
IconFile=%SystemRoot%\system32\SHELL32.dll
IconIndex=-238  



回答3:


For anyone still interessted in this question:

Here is a codeproject link which describes the process in great detail.

It uses the SharpShell library, which can also be found on nuget.

Code, from the codeproject, looks something like that:

[ComVisible(true)]
public class ReadOnlyFileIconOverlayHandler : SharpIconOverlayHandler
{
  protected override int GetPriority()
  {
    //  The read only icon overlay is very low priority.
    return 90;
  }

  protected override bool CanShowOverlay(string path, FILE_ATTRIBUTE attributes)
  {
    try
    {
      //  Get the file attributes.
      var fileAttributes = new FileInfo(path);

      //  Return true if the file is read only, meaning we'll show the overlay.
      return fileAttributes.IsReadOnly;
    }
    catch (Exception) { return false; }
  }

  protected override System.Drawing.Icon GetOverlayIcon()
  {
    //  Return the read only icon.
    return Properties.Resources.ReadOnly;
  }
}


来源:https://stackoverflow.com/questions/8383668/add-status-icons-over-file-icons-in-explorer-like-dropbox-or-svn-in-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!