qt5之QComboBox用法

0、效果

qt5之QComboBox用法_第1张图片


1、创建

comboQeury          = new QComboBox;

2、关联槽函数

若当前选择项发生变化,则可以绑定下面的槽函数

    connect(comboQeury, SIGNAL(currentIndexChanged(QString)), this, SLOT(ComboQueryCurTextChangedSlot(const QString &)));

3、清空下拉框选项

comboQeury->clear();

4、添加下拉选项

    foreach (QString name, columnName)
    {
        // 列名升序
        tmpName =  name + " ASC";
        comboSort->addItem(tmpName);
        // 降序
        tmpName =  name + " DESC";
        comboSort->addItem(tmpName);
    }

addItem函数参数是 QString, 即下拉选择项

5、设置指定选择 某一个下拉选择项

comboQeury->setCurrentIndex(0);
下拉索引,从0开始数





你可能感兴趣的:(Qt5)