SHGFI_ICON);
m_largeImageList.Attach(hSystemLargeImageList);
//给列表控件设置图象列表
SetImageList(&m_smallImageList, LVSIL_SMALL);
SetImageList(&m_largeImageList, LVSIL_NORMAL);
}
同时,你需要下面这个函数来取得你要显示的每一项的图标的ID。
int CSystemListCtrl::GetIconIndex(const CString& csFileName)
//完整的路径以及文件名
{
SHFILEINFO sfi;
SHGetFileInfo((LPCTSTR)csFileName,0,&sfi,sizeof(SHFILEINFO),
SHGFI_SYSICONINDEX (北联网教程,专业提供视频软件下载)
……