插入CListCtrl的第二列

时间:2012-01-12 16:34:01

标签: mfc clistctrl

当我喜欢这个时

        list.InsertItem(LVIF_TEXT,0,left,0,0,0,NULL);
    list.InsertItem(LVIF_TEXT,1,right,0,0,0,NULL);

在“left”下插入字符串“right”。

1 个答案:

答案 0 :(得分:2)

CListCtrl::SetItemText()是你的朋友

int nItem = list.InsertItem(0, _T("1st column"));
list.SetItemText(nItem, 1, _T("2nd column"));