我想将行从一个列表控件复制到另一个列表控件。我只能按子项复制它们。我认为这不是很有效。必须有一种按行复制内容的方法。以下是我的代码,它一次复制一个子项目的内容。
CString CurItem, tem, copystr;
int j = 0;
m_combo_list.GetLBText(m_combo_list.GetCurSel(), CurItem);
for (int i = 0; i < m_list.GetItemCount(); i++) {
tem = m_list.GetItemText(i, 0);
if (CurItem == tem) {
m_report_list.InsertItem(j, _T(""));
for (int k = 0; k < 14; k++) { // 14 items per row.
copystr = m_list.GetItemText(i, k);// get one item per time from one list control.
m_report_list.SetItemText(j, k, copystr); // this is another list control. Copy the item to this list control.
}
j++;
}
}
任何人都可以通过直接从m_list
to复制一行来提供替换 for 循环的方法吗?m_report_list
我想这样的方式一定会节省很多时间。