Q更改当前索引时不选择

QCombobox doesn't select when changing currentIndex

本文关键字:选择 索引      更新时间:2023-10-16

在我的构造函数中,我连接到Sqlite数据库并从中读取"Categories"(QStrings)。我将它们存储在QList中。我通过调试器检查了它们是否为空,但一切都很好。

在我的初始值设定项列表中,int currCategoryIndex被设置为0。由于QComboboxes从0开始索引,因此它应该是第一个项目。

我的构造函数摘录:

dm.readDB_C(c_list); //reads into c_list
if(c_list.count() > 0) //has 1 or more items
    updateCategories();

这是我读取数据库的部分,检查它是否为空,如果不是,则调用一个将这些类别添加到QComboBox的函数。

updateCategories()功能:

void MainWindow::updateCategories()
{
    for(int i = 0; i < c_list.count(); i++){
        if(ui->cmbCategory->findText(c_list[i]) != -1){ //-1 means "not found"
            continue;
        } else {
            ui->cmbCategory->addItem(c_list[i]); //Add to QCombobox
        }
    }
    ui->cmbCategory->setCurrentIndex(currCategoryIndex); //Should be the first item
}

我的QCombox中有所有项目,但没有一个被选中。我必须点击框并自己选择一个。这是不应该发生的。

怎么了?为什么它不自己选择一个呢?

编辑:

currentIndexChanged信号:

void MainWindow::on_cmbCategory_currentIndexChanged(int index){
    currCategoryIndex = index;
}

也许第一项是空的?由于您只向QComboBox添加项,因此索引0(从一开始)可能是一个空字符串。

试试推杆ui->cmbCategory->removeItem(0);在updateCategories的开头检查是否是

此外,如果currCategoryIndex是一个不存在的索引(例如-1),则QComboBox也将为空(即使没有空字符串可供选择)-在这种情况下,您可以尝试在函数中硬编码0(如果您希望该项始终是第一个),或添加额外的检查,例如:

if (0 > currentCategoryIndex || currentCategoryIndex > ui->cmbCategory->count())
    currentCategoryIndex = 0