DEV Community

海前 王
海前 王

Posted on

treeview imagine

   CImageList* pImageList = new CImageList();

        // 创建一个包含16x16像素的图像列表
        pImageList->Create(16, 16, ILC_COLOR32 | ILC_MASK, 1, 1);

        // 加载图标到图像列表中
        HICON hIcon1 = AfxGetApp()->LoadIcon(IDI_ICON1); // 替换为你的图标ID
        HICON hIcon2 = AfxGetApp()->LoadIcon(IDI_ICON2); // 替换为你的图标ID

        // 将图标添加到图像列表中,0和1是图标的索引
        pImageList->Add(hIcon1);
        pImageList->Add(hIcon2);

        // 将图像列表设置为树控件的普通图像列表
        SetImageList(pImageList, TVSIL_NORMAL);

        // 插入节点,设置图标索引
        HTREEITEM hRoot = InsertItem(_T("Root Node"), 0, 0); // 使用图标索引0
        InsertItem(_T("Child Node"), 1, 1, hRoot); // 使用图标索引1
Enter fullscreen mode Exit fullscreen mode

Top comments (0)