在.NET 4引入了CLR in-process side-by-side特性後,我們也可以通過C#編寫Windows Shell了。我們可以在微軟的All-In-One Code Framework裡面找到相關樣本,在院子裡也有幾篇文章介紹它:
- Windows Shell擴充系列文章 1 - .NET 4 編寫Windows Shell操作功能表擴充
- Windows Shell擴充系列文章 2 - .NET 4為擴充的Windows Shell操作功能表項目添加位元影像表徵圖
但是,研究過這些樣本後便會發現:雖然用C#編寫Shell擴充比用C++簡單不少,但仍然比較繁瑣,有許多需要注意的地方,一不小心就會出錯。
今天,在CodePlex上發現了一個SharShell的項目,通過它可以快速建立Shell擴充,非常方便。例如,對如如下的一個菜單擴充:
只需要用如下幾句話就能實現:
[ComVisible(true)]
[COMServerAssocation(AssociationType.ClassOfExtension, ".txt")]
public
class
CountLinesExtension : SharpContextMenu
{
protected
override
bool CanShowMenu()
{
return
true;
}
protected
override ContextMenuStrip CreateMenu()
{
var menu = new ContextMenuStrip();
var itemCountLines = new ToolStripMenuItem
{
Text = "Count Lines...",
Image = Properties.Resources.CountLines
};
itemCountLines.Click += (sender, args) => CountLines();
menu.Items.Add(itemCountLines);
return menu;
}
private
void CountLines()
{
var builder = new
StringBuilder();
foreach (var filePath in SelectedFilePaths)
{
builder.AppendLine(string.Format("{0} - {1} Lines", Path.GetFileName(filePath), File.ReadAllLines(filePath).Length));
}
MessageBox.Show(builder.ToString());
}
}
更多資訊可以參看CodeProject上的入門教程:.NET Shell Extensions - Shell Context Menus。