如何使用findItem查找QListWidget的Item,设置String“Example”。 它是如何成功的?
if QlistWidget HAVE a "String Example":
return True
else:
return False
谢谢!
答案 0 :(得分:1)
这是在文档中:
out = lw.findItems("String Example", QtCore.Qt.MatchExactly)
return len(out) > 0
其中lw是你的QListWidget。 out
是匹配项的列表。