取组合框文本示例: 1 void ShowDlgWage::OnCbnSelendokCombo1() 2 { 3 // TODO: 在此添加控件通知处理程序代码 4 5 CString str; 6 int i; 7 i = ComBox_Test.GetCurSel(); //取得索引 8 ComBox_Test.GetLBText(i,str); //取得选中文本并赋值给str 9 MessageBox(str);10 }
本文共 293 字,大约阅读时间需要 1 分钟。
取组合框文本示例: 1 void ShowDlgWage::OnCbnSelendokCombo1() 2 { 3 // TODO: 在此添加控件通知处理程序代码 4 5 CString str; 6 int i; 7 i = ComBox_Test.GetCurSel(); //取得索引 8 ComBox_Test.GetLBText(i,str); //取得选中文本并赋值给str 9 MessageBox(str);10 }
转载于:https://www.cnblogs.com/54hxs/p/4073746.html