pyqt4中listWidget的返回值
每当我尝试使用 this 来存储 listWidget 中选定的值时,
foo=self.listWidget.currentItem()
我都会得到 foo: 的值:
<PyQt4.QtGui.QListWidgetItem object at 0x023BDD68>
这种情况是有道理的,但显然不是我所要求的。我知道有多种方法可以选择实际的项目,但是是否没有像其他输入小部件一样的单行方法来执行此操作?
Whenever I attempt to store the selected value from a listWidget using
foo=self.listWidget.currentItem()
this is what I get as a value for foo:
<PyQt4.QtGui.QListWidgetItem object at 0x023BDD68>
This sort of makes sense, but is clearly not what I was asking it for. I'm aware of round about ways to get the actual item selected but is there not some one line method for doing this, like there is for every other input widget?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 PyQt4 QListWidgetItem 文档 中,您可以使用:
或者在一行上:
From the PyQt4 QListWidgetItem docs, you could use:
Or on one line: