pyqt4:从 QListWidget 中删除项目的更少迂回方式?
我想删除一个我知道名称的项目。我想出了:
item = lw.findItems(name, QtCore.Qt.MatchExactly)[0]
lw.takeItem(lw.indexFromItem(item).row())
有没有更直接的方法来做到这一点?更接近lw.removeItem(name)
?
I want to remove an item whose name I know. I came up with:
item = lw.findItems(name, QtCore.Qt.MatchExactly)[0]
lw.takeItem(lw.indexFromItem(item).row())
Is there any more direct way of doing this? Something closer to lw.removeItem(name)
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这给具有相同文本的多个条目留下了一些歧义。我更倾向于类似这样的操作
,这将从列表中删除所有与名称匹配的项目。如果您只想删除第一个实例,则需要将其扩展为在第一个匹配处中断的完整 for 循环。
祝你好运!
This leaves a bit of ambiguity for multiple entries with the same text. I would lean more toward something like
This will remove all items matching name from the list. If you only want to remove the first instance, you need to expand this into a full for-loop that breaks at the first match.
Good luck!