CTreeCtrl怎么插入系统图标
1个回答
推荐于2016-06-15
展开全部
方法如下:
1. 在对话框中创建一个CTreeCtrl 树控件 m_tree
2. 在对话框初始化函数 OnInitDialog() 中为树控件设置系统图标列表
m_tree.SetImageList(CFileIcon::GetSysImgList(), TVSIL_NORMAL);
3. 往树控件中添加项
CString fileName = "filelist.txt"; //任意一个文件名 就一个 .txt 也行 :)
int iIcon = CFileIcon::GetSysIcon(fileName);//获取文件图标
m_tree.InsertItem(fileName,iIcon,iIcon);
1. 在对话框中创建一个CTreeCtrl 树控件 m_tree
2. 在对话框初始化函数 OnInitDialog() 中为树控件设置系统图标列表
m_tree.SetImageList(CFileIcon::GetSysImgList(), TVSIL_NORMAL);
3. 往树控件中添加项
CString fileName = "filelist.txt"; //任意一个文件名 就一个 .txt 也行 :)
int iIcon = CFileIcon::GetSysIcon(fileName);//获取文件图标
m_tree.InsertItem(fileName,iIcon,iIcon);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询