我在 CodeProject 上找到了这篇文章:http: //www.codeproject.com/Articles/512956/NET-Shell-Extensions-Shell-Context-Menus
并认为尝试一下会很好,但在 F# 中。所以我想出了以下代码:
open System
open System.IO
open System.Text
open System.Runtime.InteropServices
open System.Windows.Forms
open SharpShell
open SharpShell.Attributes
open SharpShell.SharpContextMenu
[<ComVisible(true)>]
[<COMServerAssociation(AssociationType.ClassOfExtension, ".txt")>]
type CountLinesExtension() =
inherit SharpContextMenu.SharpContextMenu()
let countLines =
let builder = new StringBuilder()
do
base.SelectedItemPaths |> Seq.iter (fun x -> builder.AppendLine(sprintf "%s - %d Lines" (Path.GetFileName(x)) (File.ReadAllLines(x).Length)) |> ignore )
MessageBox.Show(builder.ToString()) |> ignore
let createMenu =
let menu = new ContextMenuStrip()
let itemCountLines = new ToolStripMenuItem(Text = "Count Lines")
do
itemCountLines.Click.Add (fun _ -> countLines)
menu.Items.Add(itemCountLines) |> ignore
menu
override this.CanShowMenu() = true
override this.CreateMenu() = createMenu
但是,我注意到在 VS2012 中不支持对 F# 程序集进行签名(文章中的第 4 步)。我了解到,如果我想这样做,我需要手动创建一个密钥(在命令提示符中键入“sn -k keyName.snk”),然后在“项目属性 - > 构建 - > 其他标志”中添加一个标志( --keyfile:keyName.snk)。
我仍然没有成功运行它。此外,使用作者的应用程序(在“调试 Shell 扩展”部分)我收到一个错误,即我的程序集不包含 COM 服务器。
我相信我在签署组件时做错了。你能帮我运行这个吗?