第二个参数是树节点未选中时使用的图标下标,第三个参数是树节点选中时使用的图标下标,第四个参数是本节点的父节点,第二、三个参数都是针对树的图像列表而言的。CImageList* SetImageList( CImageList * pImageList, int nImageListType );给树插入图像列表.
你这个例子是创建了一个树结构,第一个是变量tree 是这个树结构的父结点,父结点来创建三个子结点;InsertItem里的参数为(第一个参数用于指定结点的文本,第二个参数指定结点图标在图像列表中的索引号,第三个参数用于表示结点被选定时,其图标在图像列表中的索引号,第四个参数用于指定父结点的句柄)
nSelectedImage
Index of the item’s selected image in the tree view control’s image list.
hParent
Handle of the inserted item’s parent.
详见msdn
标签:InsertItem