本机 PyQt 函数按选择顺序返回选定的 QTreeWidgetItems?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
底层选择模型自然会保留项目被选择的顺序。所以你真的不需要做任何特别的事情 - 只需像这样迭代它们:
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: