Condividi tramite


Proprietà Command.LabelDescription

Rappresenta una descrizione dell'etichetta.

Utilizzo

<Command.LabelDescription>
  child elements
</Command.LabelDescription>

Attributi

Non ci sono attributi.

Elementi figlio

Elemento Descrizione
Stringa
Può verificarsi al massimo una volta

Elementi padre

Elemento
Comando

Commenti

Facoltativa.

Può verificarsi al massimo una volta per ogni comando.

Command.LabelDescription può contenere un valore di tipo xs:string vincolato a qualsiasi sequenza di caratteri, inclusi spazi vuoti e caratteri di interruzione di riga.

Nota

Usare il riferimento &#xA; ai caratteri XML (UCS) per specificare un'interruzione di riga.

La lunghezza massima non è in uscita.

Se non viene specificato alcun valore per Command.LabelDescription, è necessario l'elemento figlio String .

Nota

Se Command.LabelDescription contiene sia un valore che un elemento figlio String , String ha la precedenza.

Command.LabelDescription supporta solo l'allineamento sinistro.

Esempio

Nell'esempio seguente viene illustrato un manifesto dei comandi degli Appunti con varie dichiarazioni Command.LabelDescription .

<Command Name="cmdHomeTab"
         LabelTitle="Home"
         Keytip="H" />
<Command Name="cmdClipboardGroup"
         Symbol="IDR_CMD_CLIPBOARD"
         Id="10000"
         Comment="Command definition for clipboard group"
         LabelTitle="Clipboard"
         Keytip="CB" />
<Command Name="cmdCopy"
         Symbol="IDR_CMD_COPY"
         LabelTitle="Copy"
         LabelDescription="Copy"
         Keytip="C"
         TooltipTitle="Copy"
         TooltipDescription="Click to copy">
  <Command.SmallImages>
    <Image>res/copyS_16.bmp</Image>
  </Command.SmallImages>
  <Command.LargeImages>
    <Image>res/copyL_32.bmp</Image>
  </Command.LargeImages>
</Command>
<Command Name="cmdPaste"
         Symbol="IDR_CMD_PASTE" >
  <Command.LabelTitle>Paste</Command.LabelTitle>
  <Command.LabelDescription>
    <String Content="Paste contents of clipboard"
            Id="10001"
            Symbol="IDR_RES_LABELDESC_PASTE" />
  </Command.LabelDescription>
  <Command.Keytip>P</Command.Keytip>
  <Command.TooltipTitle>
    <String Content="Paste contents of clipboard"
            Id="10002"
            Symbol="IDR_RES_TOOLTIP_PASTE"/>
  </Command.TooltipTitle>
  <Command.TooltipDescription>
    <String Content="Click to paste contents of clipboard"/>
  </Command.TooltipDescription>
  <Command.SmallImages>
    <Image
      Id="10010"
      MinDPI="96"
      Symbol="IDR_RES_SMALL_IMAGE96">
      <Image.Source>res/pasteS_96bpp.bmp</Image.Source>
    </Image>
    <Image Source="res/pasteS_120bpp.bmp"
           Id="10011"
           MinDPI="120"
           Symbol="IDR_RES_SMALL_IMAGE120" />
  </Command.SmallImages>
  <Command.LargeImages>
    <Image>res/pasteL_32.bmp</Image>
  </Command.LargeImages>
</Command>
<Command Name="cmdMinimize"
         Symbol="IDR_CMD_MINIMIZE"
         Id="10001"
         LabelTitle="Minimize" />

Requisiti

Requisito Valore
Client minimo supportato
Windows 7 [solo app desktop]
Server minimo supportato
Windows Server 2008 R2 [solo app desktop]

Vedi anche

UI_PKEY_LabelDescription