取组合框文本示例: 1 void ShowDlgWage::OnCbnSelendokCombo1() { // TODO: 在此添加控件通知处理程序代码 CString str; int i; i = ComBox_Test.GetCurSel(); //取得索引 ComBox_Test.GetLBText(i,str); //取得选中文本并赋值给str MessageBox(str); }