将列表小部件中的项目添加到另一个列表小部件

发布于 2024-11-14 07:36:06 字数 217 浏览 0 评论 0原文

单击按钮时,我尝试将列表小部件中的项目添加到另一个列表小部件。我连接了插槽和信号。然后我将代码写入称为移动函数。我的尝试是

ui->topListWidget->addItem(ui->bottomListWidget->currentItem());

然而它不起作用。我该怎么做或者我的代码有什么问题?

I try to add an item in a list widget to another list widget when the button is clicked.I connected slot and signal.Then I wrote the code into called move function .My attempt is

ui->topListWidget->addItem(ui->bottomListWidget->currentItem());

However it doesn't work. How can I do this or what's the problem of my code?

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

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

发布评论

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

评论(2

二手情话 2024-11-21 07:36:06

//移动现有项目

topListWidget->addItem(bottomListWidget->takeItem(bottomListWidget->currentRow()));

//添加复制的项目

topListWidget->addItem(bottomListWidget->currentItem()->text());

//move existing item

topListWidget->addItem(bottomListWidget->takeItem(bottomListWidget->currentRow()));

//add copied item

topListWidget->addItem(bottomListWidget->currentItem()->text());

疯到世界奔溃 2024-11-21 07:36:06

QListWidget 拥有它的项目。一项不能有两个父项。

如果您想将一项从一个列表移动到另一个列表,请使用 QListWidget::takeItem 方法。如果您想同时在两个列表中显示项目,那么我建议您放弃 QListWidget 并迁移到 QListView。

QListWidget owns its items. One item cannot have two parents.

If you want to move an item from one list to another then use QListWidget::takeItem method. If you want to show items simultaniously in both lists then I advise you to give up on QListWidget and migrate to QListView.

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