PyQt4 中 QListView 的 clicked() 信号
我有一个有效的 QListView,但从文档中,我无法弄清楚如何使用新选定项目的索引来触发信号。有什么想法吗?
I have a working QListView, but from the documentation, I can't figure out how to get a signal to fire with the index of the newly selected item. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
恕我直言,实现此目的的一种更简单的方法是使用 QListWidget 而不是 QListView,这样您可以使用 itemClicked 信号,该信号将所选项目发送到回调函数。
Imho, an easier way to achieve this would be to use a QListWidget instead of a QListView, this way you could use the itemClicked signal, which sends the selected item to the callback function.
这些是我如何实现它的代码片段:
您可以浏览我如何使用这个的完整代码 此处(第 69 行)。不过,我确实警告您,这段代码非常糟糕,需要进行一些认真的重构。
These is a snipplet of code of how I achieved it:
You can browse the full code of how I used this here (line 69). I do warn you, however, that this code is pretty bad, and needs some serious refactoring.