将项目从一个 QListWidget 移动到另一个 QListWidget

发布于 2024-10-14 02:36:34 字数 179 浏览 2 评论 0原文

我必须使用 QListWidgets、一个源列表、一个目标列表和一个按钮。每当单击该按钮时,我希望从源列表中删除所选项目并将其插入到目标列表中。我尝试 source_list.removeWidgetItem(aSelectedItem) 但这甚至没有做任何事情。 :( 我做错了什么?之后我需要以某种方式更新列表吗?

I have to QListWidgets, one source list, one destiny list and one button. Whenever the button is clicked, I want the selected item(s) from the source list to be removed and inserted into the destiny list. I tried to source_list.removeWidgetItem(aSelectedItem) but that does not even do a thing. :( What am I doing wrong? Do I need to update the list afterwards somehow?

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

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

发布评论

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

评论(1

岁月静好 2024-10-21 02:36:34

takeItem 将从 source_list 中获取该项目,并为您提供一个指向该项目的指针,您可以使用该指针将其附加到目标列表中。像这样的东西:

source_list = new QListWidget();
dest_list = new QListWidget();
new QListWidgetItem(tr("Oak"), source_list);
new QListWidgetItem(tr("Birch"), source_list);
connect(source_list, SIGNAL(clicked(QModelIndex)), this, SLOT(swapEntry(QModelIndex)));


void MyWidget::swapEntry(QModelIndex index)
{
    dest_list->insertItem(dest_list->count(), source_list->takeItem(index.row()));
}

takeItem will take the item from the source_list and give you a pointer to it you can use to append it to your destination list. Something like:

source_list = new QListWidget();
dest_list = new QListWidget();
new QListWidgetItem(tr("Oak"), source_list);
new QListWidgetItem(tr("Birch"), source_list);
connect(source_list, SIGNAL(clicked(QModelIndex)), this, SLOT(swapEntry(QModelIndex)));


void MyWidget::swapEntry(QModelIndex index)
{
    dest_list->insertItem(dest_list->count(), source_list->takeItem(index.row()));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文