MFC 的使用

(1)默认显示Combo Box 组合框的第几行:

((CComboBox*)GetDlgItem(IDC_SCHEME))->SetCurSel(0);

默认显示组合框的第一行;

(2)添加组合框的默认显示:

 m_Scheme.AddString(_T("所有方案"));
 pBox->SetCurSel(0);

你可能感兴趣的:(MFC 的使用)