我正在尝试在 MFC 的列表控件 (m_listCtrl) 中填充我的列。我想这样做:
void CMy1domacanalogaRadixDlg::sort()
{
// some code here
for (int i = 0; i <size; i++)
{
counter++;
a[i] = b[i];
niz.Format(_T("%d"), a[i]);
// here choose column and add numbers
m_listCtrl.SetItemText(i,counter,niz);
}
}
我想动态创建列,因为我想在自己的列中添加每个 for 循环迭代,但问题是我需要在表单上按两次“排序”按钮才能在列中显示数字。一切正常,我在列中有所有数字,但在第一次按下按钮时没有。感谢帮助。