早教吧 育儿知识 作业答案 考试题库 百科 知识分享

问个VC中cimagelist的问题mimagelist.Create(32,32,ILCCOLOR32|ILCMASK,0,0)这样一句话中,最后两个参数0,0有什么含义吗?不是很明白.

题目详情
问个VC中cimagelist的问题
m_imagelist.Create(32,32,ILC_COLOR32|ILC_MASK,0,0)
这样一句话中,最后两个参数0,0有什么含义吗?不是很明白.
▼优质解答
答案和解析
看一下MSDN便知,cimagelist::Create()函数共有5种重载形式,你用的是BOOL Create( int cx, int cy, UINT nFlags, int nInitial, int nGrow )这种.其中nInitial的解释是Number of images that the image list initially contains,大意应该是“最初列出的图像张数”;nGrow的解释是
Number of images by which the image list can grow when the system needs to resize the list to make room for new images. This parameter represents the number of new images the resized image list can contain,大意应该是“图像的图像列表可以增长时,系统需要调整,以腾出空间给新的图像列表的数目.此参数表示新的图像调整大小的图像列表可以包含的数量”.