首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VC >

listctrl控件 插入图片有关问题

2012-03-04 
listctrl控件 插入图片问题我用listctrl控件插入图片,但是为什么没有成功呢?能给个可以运行的代码么,谢谢

listctrl控件 插入图片问题
我用listctrl控件插入图片,但是为什么没有成功呢?能给个可以运行的代码么,谢谢了!!!!里面有个参数不是用Image   Lists中选择索引就行了么?

[解决办法]
CImageList m_ImageList;
CListCtrlm_list;
m_ImageList.Create(32,32,ILC_COLOR32,10,30);
m_list.SetImageList(&m_ImageList,LVSIL_NORMAL);
int i = m_ImageList.Add(...参数);
m_list.InsertItem(i,strName,i);

热点排行