通過SharpShell快速實現Windows Shell擴充

來源:互聯網
上載者:User

在.NET 4引入了CLR in-process side-by-side特性後,我們也可以通過C#編寫Windows Shell了。我們可以在微軟的All-In-One Code Framework裡面找到相關樣本,在院子裡也有幾篇文章介紹它:

  1. Windows Shell擴充系列文章 1 - .NET 4 編寫Windows Shell操作功能表擴充
  2. 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。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.