Condividi tramite


Elemento Menus

Definisce tutti i menu e le barre degli strumenti implementati da un pacchetto VSPackage.

Sintassi

<Menus>
  <Menu>... </Menu>
  <Menu>... </Menu>
</Menus>

Attributi ed elementi

Nelle sezioni seguenti vengono descritti gli attributi, gli elementi figlio e gli elementi padre.

Attributi

Attributo Descrizione
Condizione Facoltativo. Vedere Attributi condizionali.

Elementi figlio

Elemento Descrizione
Elemento Menus Definisce tutti i menu e le barre degli strumenti implementati da un pacchetto VSPackage.
Elemento Menu Rappresenta un singolo menu o una barra degli strumenti.

Elementi padre

Elemento Descrizione
Elemento Commands Rappresenta la raccolta di comandi nel VSPackage.

Esempio

<Commands package="guidMyPackage">
    <Menus>
      <Menu Condition="'%(DEBUG)' != 'true'"
        guid="cmdSetGuidMyProductCommands" id="menuIDMainMenu"
        priority="0x0000" type="Menu">
        <Annotation>
          <Documentation>this is an annotation</Documentation>
          <AppInfo>
            <CustomData>
              <CustomSubElement>Some data</CustomSubElement>
            </CustomData>
          </AppInfo>
        </Annotation>
        <CommandFlag>AlwaysCreate</CommandFlag>
        <Strings>
          <ButtonText>MainMenu</ButtonText>
        </Strings>
      </Menu>
  </Menus>
<Commands>

Vedi anche