本机 PyQt 函数按选择顺序返回选定的 QTreeWidgetItems?

发布于 2024-12-07 03:01:56 字数 184 浏览 0 评论 0原文

我有一个 QTreeWidget,它使用 QAbstractItemView.ExtendedSelection 属性,允许用户移动单击并控制单击项。

我想根据这些项目的选择顺序对它们执行操作 - 我可以想办法设计自己的系统来确定选择顺序,但是是否有一个本机函数/属性将返回一个列表通过选择顺序排序的项目?

谢谢您的建议!

I have a QTreeWidget which uses the QAbstractItemView.ExtendedSelection property, allowing users to shift click and control click items.

I'd like to preform actions on these items based on the order in which they are selected-- I can think of ways to design my own systems to determine the selection order, but is there a native function/property that will return a list of items sorted via selection order?

Thank you for your advice!

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

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

发布评论

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

评论(1

萌无敌 2024-12-14 03:01:57

底层选择模型自然会保留项目被选择的顺序。所以你真的不需要做任何特别的事情 - 只需像这样迭代它们:

for item in treewidget.selectedItems():
    print(item.text(0))

The underlying selection model naturally preserves in the order in which items are selected. So you don't really need to do anything special - just iterate over them like this:

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