如何在 QListView 中获取所选项目委托
我想在我的 QListView 上实现拖放,所以我想获取所选项目委托。我怎样才能做到这一点?
I want to implement drag and drop on my QListView, so I would like to get the selected item delegate. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有亲自测试过这一点,但这是我通过阅读文档< /a>.
QListView
有一个QList
,其中包含所选项目。您可以使用QListView::selectedIndexes()
访问此列表。然后您可以为所选索引调用 QAbstractItemView::itemDelegate( const QModelIndex& index ) 。此函数返回一个
QAbstractItemDelegate*
。I haven't tested this for myself, but this is what I found out by reading the documentation.
QListView
has aQList<QModelIndex>
which contains the selected items. You can access this list usingQListView::selectedIndexes()
.Then you can call
QAbstractItemView::itemDelegate( const QModelIndex& index )
for your selected index. This function returns aQAbstractItemDelegate*
.我不确定这是否对您有帮助,但您可以使用此功能:
并
参考 Qt QAbstractItemView 类文档
问候语
罗伯特
I'm not sure if this will help You, but You can use this functions:
and
and refer to Qt QAbstractItemView class documentation
greetings
Robert