Compartilhar via


CImageList::anexar

telefonar Esta função para anexar uma lista de imagens a um CImageList objeto.

BOOL Attach(
   HIMAGELIST hImageList 
);

Parâmetros

  • hImageList
    Um identificador para um objeto de lista de imagem.

Valor de retorno

Diferente de zero se o anexo foi bem-sucedida; caso contrário, 0.

Exemplo

void AddQuestion(HIMAGELIST hmyImageList)
{
   CImageList imgList;

   // Attach the image list handle to the CImageList object.
   imgList.Attach(hmyImageList);

   // Add a new icon to the image list.
   imgList.Add(AfxGetApp()->LoadStandardIcon(IDI_QUESTION));

   // Detach the handle from the CImageList object.
   imgList.Detach();
}

Requisitos

Cabeçalho: afxcmn.h

Consulte também

Referência

Classe CImageList

Gráfico de hierarquia

CImageList::desanexar

CImageList::GetSafeHandle

Outros recursos

CImageList membros