来自qlineedit的带有搜索查询的Qlistwidget

时间:2019-01-27 10:21:52

标签: python pyqt

创建了一个QLineEdit作为搜索栏,以搜索QListWidget中的项目。

可能可以使用QSortFilterProxyModel,但没有足够的文档。尝试了几种技巧,但没有用。

self.lineEdit.textChanged.content(self.tcevent)

def tcevent(self):
 items=self.listWidget.findItems(self.lineEdit.text(),QtCore.Qt.MatchContains)
 if items:
   for item in items:
     <do something> sorting? hiding unrelated?



0 个答案:

没有答案