CImageList::Attach
Appelez cette fonction pour attacher une liste d'images à un objet d' CImageList .
BOOL Attach(
HIMAGELIST hImageList
);
Paramètres
- hImageList
Un handle vers un objet liste d'images.
Valeur de retour
Une valeur différente de zéro si la connexion a abouti ; sinon 0.
Exemple
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();
}
Configuration requise
Header: afxcmn.h