如何在QTableView中刷新QCombobox的内容

发布于 2024-12-18 11:34:26 字数 281 浏览 1 评论 0原文

我有 QTableView,其中一列中有 QComboBox。组合框显示来自向量的数据,当我单击按钮时该向量会更新。 当我启动应用程序时,组合框显示矢量中的所有项目。现在我按下按钮(这会向向量添加更多项目),但组合框不会反映向量中的新数据。它仍然显示旧数据。一旦矢量更新,我也会发出 dataChanged() 但我没有看到任何变化。 data() 函数确实在模型中得到调用,该模型确实返回向量的所有元素,但 setEditorData 没有在委托中得到调用。

我是不是错过了什么。

谢谢,

开发者

I have QTableView which has QComboBox in one of the columns. The combobox is displaying data from a vector which get updates when I click a button.
When I start the application the combobox displays all the items in vector. Now I press the button (which adds more items to the vector) but the combobox doesn't reflect new data in vector. It still shows old data. I am also emitting dataChanged() once the vector is updated but I don't see any change. data() function does get call in the model which does return all the elements of the vector, but setEditorData doesn't get call in delegate.

Am I missing something.

Thanks,

Dev

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木槿暧夏七纪年 2024-12-25 11:34:26

然后您需要执行类似以下功能的操作:

void updateComboBox(QComboBox *comboToUpdate, const QStringList & list )
{
    QString curentText = comboToUpdate->currntText();
    comboToUpdate->clear();
    comboToUpdate->insertItems(list);
    comboToUpdate->setCurrentIndex(comboToUpdate->findText(currentText));
}

Lines

QString currentText = comboToUpdate->currentText();
...
comboToUpdate->setCurrentIndex(comboToUpdate->findText(currentText));

是可选的,用于在选择后不更改 currentItem。

Then you need to do something like this function:

void updateComboBox(QComboBox *comboToUpdate, const QStringList & list )
{
    QString curentText = comboToUpdate->currntText();
    comboToUpdate->clear();
    comboToUpdate->insertItems(list);
    comboToUpdate->setCurrentIndex(comboToUpdate->findText(currentText));
}

Lines

QString currentText = comboToUpdate->currentText();
...
comboToUpdate->setCurrentIndex(comboToUpdate->findText(currentText));

are optional and used to don't change currentItem after selection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文