How to list all items from QListWidget

此生再无相见时 提交于 2021-01-27 21:00:05

问题


I apology if it has been already asked but would you please clarify it again: how to get all ListWidgetItems listed in QListWidget?

Poster later:

Here it's in action. There are 5 items in a list. Subtracting one results 4.

from PyQt4 import QtGui, QtCore

class Dialog_01(QtGui.QMainWindow):
    def __init__(self):
        super(QtGui.QMainWindow,self).__init__()

        myQWidget = QtGui.QWidget()
        myBoxLayout = QtGui.QVBoxLayout()
        myQWidget.setLayout(myBoxLayout)
        self.setCentralWidget(myQWidget)

        self.lw = QtGui.QListWidget()
        myBoxLayout.addWidget(self.lw)

        for i in range(5):
            QtGui.QListWidgetItem('myItem', self.lw)

        ok_button = QtGui.QPushButton("Print count")
        ok_button.clicked.connect(self.OK)      
        myBoxLayout.addWidget(ok_button) 

    def OK(self):
        # let self.lw haven elements in it.
        items = []
        for x in range(self.lw.count()-1):
            items.append(self.lw.item(x))
        print len(items)

if __name__ == '__main__':
    app = QtGui.QApplication(sys.argv)
    dialog_1 = Dialog_01()
    dialog_1.show()
    sys.exit(app.exec_())

回答1:


Here is a easy way to get all ListWidgetItems in a listWidget.

lw = QtGui.QListWidget()
# let lw haven elements in it.
items = []
for x in range(lw.count()-1):
    items.append(lw.item(x))

#items will consist a list of ListWidgetItems.



回答2:


Extracting values from a QlistWidget Object

def Extract(self):
    lst = QtGui.QListWidget()
    items = []
    for x in range(lst.count()):
        items.append(lst.item(x).text())
    print(items) 


来源:https://stackoverflow.com/questions/22571706/how-to-list-all-items-from-qlistwidget

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!