CListCtrl没有创建组 [英] CListCtrl is not creating groups

查看:102
本文介绍了CListCtrl没有创建组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用CListCtrl通过以下代码进行分组:

I am trying to make groupings using a CListCtrl trough the following code:

        LVGROUP lg = { 0 };
        lg.cbSize = sizeof(lg);

        lg.state = LVGS_NORMAL | LVGS_COLLAPSIBLE;
        lg.mask = LVGF_GROUPID | LVGF_HEADER | LVGF_STATE | LVGF_ALIGN | LVGF_STATE | LVGF_DESCRIPTIONTOP | LVGF_DESCRIPTIONBOTTOM | LVGF_FOOTER | LVGF_TASK | LVGF_SUBTITLE | LVGF_SUBSET;
        lg.uAlign = LVGA_HEADER_LEFT | LVGA_FOOTER_RIGHT;


        LVITEM item = { 0 };
        item.mask = LVIF_TEXT | LVIF_IMAGE | LVIF_GROUPID;
        item.iSubItem = 0;
        item.state = 0;
        item.stateMask = LVIS_SELECTED;

        CString s;

        lg.iGroupId = 0;

        s = L"Office";
        lg.pszHeader = s.GetBuffer();
        lg.cchHeader = s.GetLength();

        pListCtrl->InsertGroup(lg.iGroupId, &lg);

        item.iGroupId = 0;



        s = "Pen";
        item.pszText = s.GetBuffer();
        item.cchTextMax = s.GetLength();

        pListCtrl->InsertItem(&item);

        s = "Pencil";
        item.pszText = s.GetBuffer();
        item.cchTextMax = s.GetLength();

        pListCtrl->InsertItem(&item);




        lg.iGroupId = 1;

        s = L"Workshop";
        lg.pszHeader = s.GetBuffer();
        lg.cchHeader = s.GetLength();

        pListCtrl->InsertGroup(lg.iGroupId, &lg);


        item.iGroupId = 1;



        s = "Hammer";
        item.pszText = s.GetBuffer();
        item.cchTextMax = s.GetLength();

        pListCtrl->InsertItem(&item);


        s = "Drill";
        item.pszText = s.GetBuffer();
        item.cchTextMax = s.GetLength();

        pListCtrl->InsertItem(&item);


        s = "Saw";
        item.pszText = s.GetBuffer();
        item.cchTextMax = s.GetLength();

        pListCtrl->InsertItem(&item);

但所有内容均显示为未分组

but everything is shown ungrouped

我如何使小组正常工作?

How can I make the groups work as they should?

推荐答案

事实证明需要清单,我将其添加到stdafx.h

It turns out there is the need of a manifest, which I added to stdafx.h

#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")

这篇关于CListCtrl没有创建组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆