15

我想在 Visual Studio 2012 解决方案资源管理器中的右键单击 => 添加菜单中添加一个菜单项。单击自定义项目时,我可以使用我的模板添加项目。我开发了一个 Visual Studio 插件来做到这一点,但我遇到了一些麻烦。我可以将菜单项添加到右键菜单中,但无法满足我的要求。

  1. menuitem 应该是“添加”的子菜单。不是根项目。

  2. 我还需要仅在右键单击名为“Areas”的文件夹时才显示菜单项。当我右键单击其他文件夹时,我不希望它显示。

这是我的OnConnection功能代码。我怎样才能改变它以满足我的要求。

public void OnConnection(object application, ext_ConnectMode connectMode, object addInInst, ref Array custom)
    {
        _applicationObject = (DTE2)application;
        _addInInstance = ((AddIn)addInInst);
        if (connectMode == ext_ConnectMode.ext_cm_UISetup)
        {
            object[] contextGUIDS = new object[] { };
            Commands2 commands = (Commands2)_applicationObject.Commands;

            //Place the command on the tools menu.
            //Find the MenuBar command bar, which is the top-level command bar holding all the main menu items:
            var bars=((Microsoft.VisualStudio.CommandBars.CommandBars)_applicationObject.CommandBars);

            Microsoft.VisualStudio.CommandBars.CommandBar menuBarCommandBar = bars["MenuBar"];

            //Find the Tools command bar on the MenuBar command bar:
            //CommandBarControl toolsControl = menuBarCommandBar.Controls[toolsMenuName];
            //CommandBarPopup toolsPopup = (CommandBarPopup)toolsControl;
            // get popUp command bars where commands will be registered.
            CommandBars cmdBars = (CommandBars)(_applicationObject.CommandBars);
            //CommandBar vsBarItem = cmdBars["Item"]; //the pop up for clicking a project Item
            CommandBar vsBarFolder = cmdBars["Web Project Folder"];
            CommandBar vsBarWebFolder = cmdBars["Web Folder"];

            //This try/catch block can be duplicated if you wish to add multiple commands to be handled by your Add-in,
            //  just make sure you also update the QueryStatus/Exec method to include the new command names.
            try
            {
                //Add a command to the Commands collection:
                Command command = commands.AddNamedCommand2(_addInInstance, "ModuleAddin", "Add a Project", "Executes the command for ModuleAddin", true, 59, ref contextGUIDS, (int)vsCommandStatus.vsCommandStatusSupported + (int)vsCommandStatus.vsCommandStatusEnabled, (int)vsCommandStyle.vsCommandStylePictAndText, vsCommandControlType.vsCommandControlTypeButton);
                //Add a control for the command to the tools menu:
                if (command != null)
                {
                    //command.AddControl(toolsPopup.CommandBar, 1);
                    command.AddControl(vsBarFolder);
                    //CommandBarButton button = (CommandBarButton)command.AddControl(vsBarFolder, 3);
                    //button.BeginGroup = true;
                }
            }
            catch (System.ArgumentException argEx)
            {
                System.Diagnostics.Debug.Write("Exception in HintPaths:" + argEx.ToString());
            }
        }
    }
4

1 回答 1

37

您不需要为此添加插件。

链接: http: //nickmeldrum.com/blog/how-to-run-powershell-scripts-from-solution-explorer-in-visual-studio-2010

复制粘贴的博文...

第 1 步:添加“运行 powershell 脚本”作为外部工具

  1. 在 Visual Studio 中,转到菜单:工具 | 外部工具
  2. 点击“添加”按钮
  3. 添加以下表单值:

    • 标题:“在输出窗口中运行 Powershell 脚本”
    • 命令:“C:\windows\system32\windowspowershell\v1.0\powershell.exe”
    • 参数:" -file "$(ItemPath)"
    • 初始目录:“$(ItemDir)”
    • 勾选“使用输出窗口”
    • (退出时关闭现在将自动开启)
  4. 单击“应用”按钮

  5. 点击“添加”按钮

  6. 添加以下表单值:

    • 标题:“在 VS 之外运行 powershell 脚本”
    • 命令:“C:\windows\system32\windowspowershell\v1.0\powershell.exe”
    • 参数:" -file "$(ItemPath)"
    • 初始目录:“$(ItemDir)”
    • 不要勾选“使用输出窗口”
    • 勾选“退出时关闭”
  7. 单击“确定”按钮

它们应该看起来像这样: >

第2步:奇怪的步骤,相信我!

检查它在外部工具列表中的索引位置。默认情况下,我的位置是 6 和 7。(我认为默认情况下 Create GUID 是第 1 位!)

第 3 步:将其连接到上下文菜单

  1. 进入菜单:工具 | 定制 | 命令
  2. 单击“上下文菜单”单选选项
  3. 向下滚动到“项目和解决方案上下文菜单|项目”(噩梦般的长菜单,输入“项目”大致到正确的位置)
  4. 单击“添加命令”按钮
  5. 选择类别:“工具”和命令:“外部命令 7”(或者您从“奇怪的步骤 2”中获得的任何位置)
  6. 点击“确定”按钮
  7. 然后设置第二个命令:
  8. 选择类别:“工具”和命令:“外部命令 8”(或其他任何您的位置)
  9. 再次点击“确定”按钮
  10. 移动它们直到您对它们的订单感到满意(我通常将它们放在“打开方式...”下方的某个位置)>

第 4 步:添加键盘快捷键

  1. 进入菜单:工具 | 选项
  2. 选择环境 | 键盘部分
  3. 在列表中找到 Tools.ExternalCommandN 项(再次噩梦般的长列表,键入“工具”让您再次大致到达那里)
  4. 为每个命令选择你的快捷键:我喜欢CTRL SHIFT PCTRL SHIFT ALT P分别

欧海

于 2016-03-11T22:34:00.310 回答