CImageList::Attach
调用此功能附加图像列表。CImageList 对象。
BOOL Attach(
HIMAGELIST hImageList
);
参数
- hImageList
为图像的句柄列表对象。
返回值
非零,则附件成功;否则为0。
示例
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();
}
要求
Header: afxcmn.h