Кнопка «Добавить» в контекстное меню выгруженного проекта Visual Studio (не удается найти CommandBar по его имени) - PullRequest
1 голос
/ 04 января 2012

Восстановление пакета NuGet не очень хорошо работает с пакетом PostSharp, это меня очень раздражает, и ручное редактирование файлов csproj быстро устареет.

Я хочу создать небольшой надстройку Visual Studio, которая исправляетпроект для меня, добавив дополнительную кнопку в контекстное меню выгруженного проекта.

Проблема, с которой я сталкиваюсь, звучит просто, но преследует меня: я почему-то не могу найти CommandBar для контекстного меню выгруженного проекта.

Итак, суммируем вопрос: как называется CommandBar для незагруженного контекстного меню проекта.

Большое спасибо!

1 Ответ

1 голос
/ 04 января 2012

Видимо: «Окурок проекта».Найдено в списке по адресу: Имена CommandBar

Чтобы суммировать метод 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;
            string toolsMenuName = "Tools";

            //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:
            Microsoft.VisualStudio.CommandBars.CommandBar menuBarCommandBar = ((Microsoft.VisualStudio.CommandBars.CommandBars)_applicationObject.CommandBars)["MenuBar"];

            //Find the Tools command bar on the MenuBar command bar:
            CommandBarControl toolsControl = menuBarCommandBar.Controls[toolsMenuName];
            CommandBars cmdBars = (CommandBars)(_applicationObject.CommandBars);
            CommandBar vsBarProject = cmdBars["Stub Project"];
            CommandBarPopup toolsPopup = (CommandBarPopup)toolsControl;

            //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, "FixNuGetPostSharp", "Fix NuGet PostSharp", "Executes the command for VsextensionTest", true, 0, 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) && (toolsPopup != null))
                {
                    command.AddControl(vsBarProject);
                }
            }
            catch (System.ArgumentException)
            {
                //If we are here, then the exception is probably because a command with that name
                //  already exists. If so there is no need to recreate the command and we can 
                //  safely ignore the exception.
            }
        }
    }
...