3

请看这个问题。

最初的问题已经解决,我的扩展中有一个方法。我希望当用户安装扩展程序时,也应该安装一个键盘快捷键,并且应该在按下时运行该方法。

我该怎么做呢?

4

1 回答 1

4

您可以将快捷方式添加到 .vsct 文件。当您生成新扩展并说它将具有菜单命令时,该文件会在向导中自动创建。手动添加:

  • 创建 MyCommands.vsct
  • 将文件属性设置为 VSCTCompile
  • 卸载您的项目,右键单击并编辑项目:
<VSCTCompile Include="MyCommands.vsct">
    <ResourceName>Menus.ctmenu</ResourceName>
    <SubType>Designer</SubType>
</VSCTCompile>
  • 声明您的项目将有菜单和快捷方式:
[ProvideMenuResource("Menus.ctmenu",1)]
public sealed class MyPackage : Package
  • 添加键绑定部分:
<KeyBindings>
   <KeyBinding guid="yourCmdSet" id="cmdAwesome"
    editor="guidVSStd97"
    key1="VK_F7" mod1="Control Alt"
    key2="VK_F1">
   </KeyBinding>
</KeyBindings>
  • 在您的 Package.Initialize 中:
// Add our command handlers for menu/shortcut (commands must exist in the .vsct file)
OleMenuCommandService mcs = GetService(typeof(IMenuCommandService)) as OleMenuCommandService;
if (null != mcs)
{
    //// Create the command for the menu item.
    var menuCommandID = new CommandID(GuidList.yourCmdSet,(int)PkgCmdIDList.cmdAwesome);
    var menuItem = new MenuCommand((sender, evt) =>
    {
        // Do stuff
    }
}

更多资源:

于 2012-05-23T16:12:23.203 回答