CImageList::Attach
Chiamare la funzione per associare un elenco immagini a un oggetto CImageList.
BOOL Attach(
HIMAGELIST hImageList
);
Parametri
- hImageList
Handle a un oggetto elenco.
Valore restituito
Diverso da zero se l'allegato è riuscita, in caso contrario 0.
Esempio
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();
}
Requisiti
Header: afxcmn.h