int GetImageCount() const;
这个方法没有参数,返回一个 int 值,表示图像列表中的图像数量。
使用示例:
CImageList myImageList;
// 在这里初始化并使用 myImageList,确保它已经包含图像
int imageCount = myImageList.GetImageCount();
// 现在可以使用 imageCount 来获取图像列表中的图像数量
这个方法对于确定图像列表中有多少个图像是非常有用的,例如在循环中迭代图像列表中的图像时,你可以使用 GetImageCount 来确定循环的次数。
转载请注明出处:http://www.pingtaimeng.com/article/detail/18297/MFC/CImageList