我一直在尝试显示我使用PySide构建的列表。它不仅仅是一个字符串列表(或者我可以使用QListWidget
),但我将其简化为示例。
from PySide import QtCore, QtGui
class SimpleList(QtCore.QAbstractListModel):
def __init__(self, contents):
super(SimpleList, self).__init__()
self.contents = contents
def rowCount(self, parent):
return len(self.contents)
def data(self, index, role):
return str(self.contents[index.row()])
app = QtGui.QApplication([])
contents = SimpleList(["A", "B", "C"]) # In real code, these are complex objects
simplelist = QtGui.QListView(None)
simplelist.setGeometry(QtCore.QRect(0, 10, 791, 391))
simplelist.setModel(contents)
simplelist.show()
app.exec_()
我看到nothing,只是一个空列表。
我做错了什么?
答案 0 :(得分:3)
您应该检查role
参数:
def data(self, index, role):
if role == QtCore.Qt.DisplayRole:
return str(self.contents[index.row()])
但奇怪的是,QTableView
适用于任何role
。