最近在工作中需要通过字段查询item,并在当前显示,记录如下:
QQComboBox:
self.item.setCurrentIndex(self.item.findText(str))
此处,通过findText(str)查找到index赋值给setCurrentIndex,从而通过字段查找到所需的item,并将其显示。
QTreeWidget
# 通过字段查找到所需的item,注意:此处得到的是一个item的list!
# Qt.MatchExactly为匹配模式,此处为精确匹配
items = self.treeWidget.findItems(str, Qt.MatchExactly)
# 将items的第一个元素,当前显示
self.treeWidget.setCurrentItem(items[0])