C++ ComboBox基础

时间:2021-10-17 19:58:52

关键点

实现过程

//添加

//添加字符串
m_cbo1.AddString("AAA");
m_cbo1.AddString("BBB");
m_cbo1.AddString("CCC");
//插入字符串
m_cbo1.InsertString( 1, "DDD");

m_cbo1.SetCurSel(0);

//删除
清空

//删除字符串
    m_cbo1.DeleteString(0);
//清空项目

m_cbo1.ResetContent();

//查找

    //在控件中查找给定Item
    int nIndex = m_cbo1.FindStringExact( -1, "DDD");
    if (nIndex>=0)
    {
        MessageBox("Yes");
        m_cbo1.SelectString(nIndex,"DDD");//选中这个字符串

}

//从控件得到选定的Item
    int nIndex = m_cbo1.GetCurSel();
    CString SelText;
    m_cbo1.GetLBText( nIndex, SelText);

MessageBox(SelText);

备注

相关链接