列表视图控件

定义CImageList m_ImageList;
	m_ImageList.Create(32,32,ILC_COLOR24|ILC_MASK,1,0);	//创建列表视图窗口
	m_ImageList.Add(AfxGetApp()->LoadIcon(IDI_ICON1));		//向图像列表中添加图标
	m_ImageList.Add(AfxGetApp()->LoadIcon(IDI_ICON2)); 		//向图像列表中添加图标
	m_ImageList.Add(AfxGetApp()->LoadIcon(IDI_ICON3)); 		//向图像列表中添加图标
	m_ImageList.Add(AfxGetApp()->LoadIcon(IDI_ICON4)); 		//向图像列表中添加图标
	m_ImageList.Add(AfxGetApp()->LoadIcon(IDI_ICON5)); 		//向图像列表中添加图标
	m_ImageList.Add(AfxGetApp()->LoadIcon(IDI_ICON6)); 		//向图像列表中添加图标
	m_ImageList.Add(AfxGetApp()->LoadIcon(IDI_ICON7)); 		//向图像列表中添加图标
	m_Icon.SetImageList(&m_ImageList,LVSIL_NORMAL);		//将图像列表关联到列表视图控件中
	m_Icon.InsertItem(0,"王一",0);							//向列表视图中添加数据
	m_Icon.InsertItem(1,"孙二",1); 							//向列表视图中添加数据
	m_Icon.InsertItem(2,"刘三",2); 							//向列表视图中添加数据
	m_Icon.InsertItem(3,"吕四",3); 							//向列表视图中添加数据
	m_Icon.InsertItem(4,"庞五",4); 							//向列表视图中添加数据
	m_Icon.InsertItem(5,"宋六",5); 							//向列表视图中添加数据
	m_Icon.InsertItem(6,"孙七",6); 							//向列表视图中添加数据

你可能感兴趣的:(列表视图控件)