pyqt搜索指定信息 github处找到,谢谢这位朋友的帮助了

def tabunqi(self,text):
    #第一遍添加之后,不提示,当第二次添加相同的数据时,就提示下
    text1=str(text)
    items = self.downwidget.findItems(
        text1, QtCore.Qt.MatchExactly)
    if items:
        results = '\n'.join(
            'row %d column %d' % (item.row()+1 , item.column()+1 )
            for item in items)
    else:
        results = 'Found Nothing'

    QtGui.QMessageBox.information(self, 'Search Results', results)

 

你可能感兴趣的:(pyqt搜索指定信息 github处找到,谢谢这位朋友的帮助了)