我认为这是您可以实现的最简单的方案。
您应该首先在 C# 中创建一个加载项。(在 VS 2013 中,它们已被弃用:()
在 OnConnection 方法中,您应该添加您的命令:
public void OnConnection( object application, ext_ConnectMode connectMode, object addInInst, ref Array custom )
{
_applicationObject = (DTE2)application;
if (connectMode == ext_ConnectMode.ext_cm_AfterStartup || connectMode == ext_ConnectMode.ext_cm_Startup)
{
Commands2 commands = (Commands2)_applicationObject.Commands;
try
{
//Add a command to the Commands collection:
Command command = commands.AddNamedCommand2(_addInInstance, "MyAddinMenuBar", "MyAddinMenuBar", "Executes the command for MyAddinMenuBar", true, 59, ref contextGUIDS, (int)vsCommandStatus.vsCommandStatusSupported + (int)vsCommandStatus.vsCommandStatusEnabled, (int)vsCommandStyle.vsCommandStylePictAndText, vsCommandControlType.vsCommandControlTypeButton);
}
catch (System.ArgumentException)
{
//If we are here, bla, bla... (Auto generated)
}
}
}
注意:您可以在AddNamedCommand2的引用中找到参数的作用方式
。模板创建的版本也可以,但自然值得为您的命令正确命名。
之后,您需要将逻辑添加到Exec
方法中:
public void Exec( string commandName, vsCommandExecOption executeOption, ref object varIn, ref object varOut, ref bool handled )
{
handled = false;
if (executeOption == vsCommandExecOption.vsCommandExecOptionDoDefault)
{
if (commandName == "MyAddinMenuBar.Connect.MyAddinMenuBar")
{
List<string> args = (varIn as string).Split(' ').ToList();
TextSelection ts;
ts = (TextSelection)_applicationObject.ActiveDocument.Selection;
EditPoint ep = (ts.ActivePoint).CreateEditPoint();
ep.StartOfDocument();
do
{
string actualLine = ep.GetLines(ep.Line, ep.Line + 1);
if (args.TrueForAll(filter => actualLine.Contains(filter)))
{
_applicationObject.ExecuteCommand("Edit.GoTo", ep.Line.ToString());
_applicationObject.ExecuteCommand("Edit.ToggleOutliningExpansion");
}
ep.LineDown();
} while (!ep.AtEndOfDocument);
handled = true;
return;
}
}
}
注意:您为命令指定的名称已在 exec 中检查。
比你能建造的。
[ProjectName].AddIn
加载项的部署可以通过..\Documents\Visaul Studio 20[XY]\AddIns\
. (由模板创建,如果将加载项移动到其他位置,则应复制)您应该将加载项程序集放置在Assembly您设置指向的上述文件元素的位置。要更改版本,您应该修改Version元素中的文本。
部署并启动 Studio 后,您应该在Tools
菜单的管理器中激活加载项。
您需要展开代码文件中的所有可折叠部分(带有 C# IDE settigs 的 ++ CTRL)M。L这是必需的,因为我只找到了一种反转崩溃状态的方法。如果你找到更好的命令,你可以改变它。
接下来,您应该激活命令窗口以使用创建的命令。现在只需要输入命令名称,如下所示:
MyAddinMenuBar.Connect.MyAddinMenuBar #ifdef PROJNAME_DEBUG
希望魔术会发生。
该解决方案与您编辑的代码语言无关,因此非常多功能。