CImageList::Attach
Chamar essa função para anexar uma lista de imagem a um objeto de CImageList .
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 tenha êxito; se não 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