//手动设置显示高度(控件右侧小箭头)
CComboBox* m_pComboBox = (CComboBox*)GetDlgItem(IDC_COMBO1);
CString str;
for (int i = 0; i < 20; i++)
{
str.Format(_T("item string %d"), i);
m_pComboBox->AddString(str);
}
//