MFC中的列表框控件(CListBox)可以通過以下方法添加int類型的數據:
CListBox listBox;
int value = 10;
CString strValue;
strValue.Format("%d", value);
listBox.AddString(strValue);
CListBox listBox;
int value = 10;
CString strValue;
strValue.Format("%d", value);
int index = 0; // 插入位置
listBox.InsertString(index, strValue);
注意:在添加int類型數據時,需要先將其轉換為字符串類型,再添加到列表框中。