Visual Studio Addin - 未显示子菜单项

时间:2010-12-08 01:28:37

标签: c# visual-studio-2008 components add-in

已成功创建顶部菜单项,尝试创建第一个子项但未显示且没有抛出异常......

void IDTExtensibility2.OnConnection(object application, ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
    _ApplicationObject = (DTE2)application;
    _AddInInstance = (AddIn)addInInst;

    if (connectMode == ext_ConnectMode.ext_cm_Startup)
    {
        object[] contextGUIDS = new object[] { };
        Commands2 commands = (Commands2)_ApplicationObject.Commands;
        CommandBars commandBars = (CommandBars)_ApplicationObject.CommandBars;
        CommandBar cbMainMenu = commandBars["MenuBar"];

        try
        {
            // ROOT MENU
            CommandBarPopup cbpProjectManagement = (CommandBarPopup)cbMainMenu.Controls.Add(MsoControlType.msoControlPopup, Type.Missing, Type.Missing, cbMainMenu.Controls.Count, true);
            cbpProjectManagement.Caption = "ROOTMENU";

            // SUB ITEM
            Command cmdCompiledAssemblies = _ApplicationObject.DTE.Commands.AddNamedCommand(_AddInInstance, "VSPM_CA", "CA", 
                String.Empty, true, 0, ref contextGUIDS, (int)vsCommandStatus.vsCommandStatusSupported + (int)vsCommandStatus.vsCommandStatusEnabled);

            CommandBarControl cbcCompiledAssemblies = (CommandBarControl)cmdCompiledAssemblies.AddControl(cbpProjectManagement.CommandBar, 1);
        }
        catch (Exception ex)
        {
            System.Windows.Forms.MessageBox.Show(ex.ToString());
        }
    }
}

2 个答案:

答案 0 :(得分:1)

有关如何在此创建各种菜单和工具栏的完整文档..

http://www.mztools.com/articles/2005/mz2005003.aspx

答案 1 :(得分:0)

我知道这个主题真的很老 - 但我遇到了同样的问题,最后找到了解决方案:

在QueryStatusMethod中,您必须检查命令(上面构建的命令)并返回有效状态,例如:

    public void QueryStatus(string commandName, vsCommandStatusTextWanted neededText, ref vsCommandStatus status, ref object commandText)
    {
        if(neededText == vsCommandStatusTextWanted.vsCommandStatusTextWantedNone)
        {
            if (commandName == "MetatoolVSAddin.Connect.AddInAboutButton")
            {
                status = (vsCommandStatus)vsCommandStatus.vsCommandStatusSupported|vsCommandStatus.vsCommandStatusEnabled;
                return;
            }
        }
    }