Compartilhar via


Propriedade Command.LabelDescription

Representa uma descrição de rótulo.

Uso

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

Atributos

Não há atributos.

Elementos filho

Elemento Descrição
String
Pode ocorrer no máximo uma vez

Elementos pai

Elemento
Comando

Comentários

Opcional.

Pode ocorrer no máximo uma vez para cada Comando.

Command.LabelDescription pode conter um valor do tipo xs:string restrito a qualquer sequência de caracteres, incluindo espaço em branco e caracteres de quebra de linha.

Observação

Use a referência &#xA; de caractere XML do UCS (Conjunto Universal de Caracteres) para especificar uma quebra de linha.

O comprimento máximo é não associado.

Se nenhum valor for fornecido para Command.LabelDescription, o elemento filho String será necessário.

Observação

Se Command.LabelDescription contiver um valor e um elemento filho String , String terá precedência.

Command.LabelDescription dá suporte apenas ao alinhamento à esquerda.

Exemplos

O exemplo a seguir mostra um manifesto de Comandos da área de transferência com várias declarações 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" />

Requisitos

Requisito Valor
Cliente mínimo com suporte
Windows 7 [somente aplicativos da área de trabalho]
Servidor mínimo com suporte
Windows Server 2008 R2 [somente aplicativos da área de trabalho]

Confira também

UI_PKEY_LabelDescription