我是MFC的新手。 我不知道如何为组合框添加值。 我有一个矢量类。
这是我的代码。
CellPhone cp;
vector<CellPhone> cellPhoneList;
cellPhoneList = cp.loadCellPhone();
m_pComboBox.SetCurSel(0);
for(unsigned int i=0; i<cellPhoneList.size(); i++)
{
CString str = cellPhoneList[i].getSerialNumber();
m_pComboBox.AddString(str);
}
serialNumber的类型是CString。
combobox不显示serialNumber列表。
我该怎么办?
答案 0 :(得分:0)
m_p ComboBox变量名称表明这是一个成员指针引用。也许你打算使用:
m_pComboBox->SetCurSel(0);
和
m_pComboBox->AddString(str);
答案 1 :(得分:0)
也许您必须先将.getSerialNumber()
转换为字符串。