comBox的几种状态图如下:
图1:ui->comboBox->setEditable(true);
图2:ui->comboBox->setEditable(false);
图1:ui->comboBox->setMaxVisibleItems(3);
图2:ui->comboBox->setMaxVisibleItems(10);
常用接口使用: ui->comboBox->addItem(QObject::tr("new item"));
ui->comboBox->setMaxVisibleItems();
ui->comboBox->setEditable(false);
ui->comboBox->setInsertPolicy(QComboBox::InsertAtTop); qDebug()<<"changed index : "<<index;
qDebug()<<"currentIndex(): "<<ui->comboBox->currentIndex();
qDebug()<<"currentText(): "<<ui->comboBox->currentText();
qDebug()<<"555 index is :" <<ui->comboBox->findText("");