Partilhar via


Método CommandSet.GetMenuCommands

Exibe os comandos no menu de atalho.

Namespace:  Microsoft.VisualStudio.Modeling.Shell
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.Shell.11.0 (em Microsoft.VisualStudio.Modeling.Sdk.Shell.11.0.dll)

Sintaxe

'Declaração
Protected Overrides Function GetMenuCommands As IList(Of MenuCommand)
protected override IList<MenuCommand> GetMenuCommands()

Valor de retorno

Tipo: System.Collections.Generic.IList<MenuCommand>
A lista de comandos de menu.

Comentários

Você pode substituir esse método e adicionar seus próprios comandos.Para adicionar seus próprios comandos, defini-los em um arquivo de .vsct personalizada e chamá-los em um arquivo. cs personalizado.

ObservaçãoObservação

Não adicione suas alterações no arquivo CommandSet.cs.Este arquivo é gerada novamente sempre que você cria o designer gerado.

Exemplos

Este exemplo adiciona um comando personalizado ao menu de atalho.Quando um usuário cria uma solução no designer gerado e clica com o botão direito do diagrama, um comando adicional, Validar, aparece no menu de atalho.

No arquivo Commands.vsct, a seguinte linha aparece após a include instruções.

#define AssociationSortValidate 0x801

No arquivo Commands.vsct, a seguinte linha aparece após GENERATED_BUTTONS.

guidCmdSet:AssociationSortValidate, guidCmdSet:grpidContextMain, 0x0100, OI_NOID, BUTTON, DIS_DEF, "&Validate";

Dentro da pasta VsctComponents, o seguinte arquivo. cs está disponível.O namespace e alguns dos métodos têm o nome do projeto, MenuSample, eles contêm.

using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel.Design;
using Microsoft.VisualStudio.Modeling;
using Microsoft.VisualStudio.Modeling.Shell;

namespace MS.MenuSample
{
    internal partial class MenuSampleCommandSet
    {

        // Define the command. This must be unique and match the value in Commands.vsct.
        private const int AssociationSortValidate = 0x801;

        // Register event handlers for menu commands when the Domain-Specific Language Designer starts.
        // Get the commands defined in the generated code.
        protected override IList<System.ComponentModel.Design.MenuCommand> GetMenuCommands()
        {
            global::System.Collections.Generic.IList<global::System.ComponentModel.Design.MenuCommand> commands = base.GetMenuCommands();
            commands.Add(new DynamicStatusMenuCommand(
                new EventHandler(OnStatusChangeAssociationSort),
                new EventHandler(OnMenuChangeAssociationSort),
                CustomCommandId(AssociationSortValidate)));
            return commands;
        }

        // Set whether a command should appear in the shortcut menu by default.
        internal void OnStatusChangeAssociationSort(object sender, EventArgs e)
        {
            MenuCommand command = sender as MenuCommand;
            command.Visible = command.Enabled = true;
        }

        // Perform an Association Sort command on the current selection.
        internal void OnMenuChangeAssociationSort(object sender, EventArgs e)
        {
            MenuCommand command = sender as MenuCommand;
        }

        // Create local command IDs that are unique.
        private CommandID CustomCommandId(int command)
        {
            return new CommandID(new Guid(Constants.MenuSampleCommandSetId), command);
        }
    }
}

Segurança do .NET Framework

Consulte também

Referência

CommandSet Classe

Namespace Microsoft.VisualStudio.Modeling.Shell