ILC_COLORDDB, 1, 0);
//将画好的BMP存入image list,并设置透明色
ImageList.Add(&Bmp, colorkey);
//从image list中获取Icon
*phDestIcon = ImageList.ExtractIcon(0);
return;
}
上述函数是利用MFC的基础类写的,也可以改为标准win32的形式,只要将相应的类调用改为API调用即可。CImageList的win32 API形式为ImageList_xxx(),具体请参看MSDN。
……