Compartilhar via


Método IVsImageButton.Draw (VSDRAWITEMSTRUCT , Int32)

 

Desenha um ImageButton para seu VSPackage.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Sintaxe

int Draw(
    VSDRAWITEMSTRUCT[] pDrawItemStruct,
    int fHot
)
int Draw(
    array<VSDRAWITEMSTRUCT>^ pDrawItemStruct,
    int fHot
)
abstract Draw : 
        pDrawItemStruct:VSDRAWITEMSTRUCT[] *
        fHot:int -> int
Function Draw (
    pDrawItemStruct As VSDRAWITEMSTRUCT(),
    fHot As Integer
) As Integer

Parâmetros

  • pDrawItemStruct
    [in] Fornece as informações em um VSDRAWITEMSTRUCT estrutura que IVsImageButton.Draw precisa ser drawthe desenhado pelo proprietário controle ou item de menu.
  • fHot
    [in] Quando true, o botão muda de aparência quando o ponteiro do mouse está sobre o botão.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Comentários

Desenha uma imagem em um botão criado pelo seu VSPackage.O botão deve ter o estilo BS_OWNERDRAW.

COM assinatura

De vsshell80.idl:

[C++]

HRESULT Draw(
   VSDRAWITEMSTRUCT* pDrawItemStruct, 
   BOOL fHot
);

Consulte também

Interface IVsImageButton
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo