2
form_shift
是表單名稱如何從pyside中的QTableWidget獲取表單元值?
tblSession
是QTableWidget
對象
shift_id=form_shift.tblSession.item(1,0).text()
錯誤:
AttributeError: 'NoneType' object has no attribute 'text'
form_shift
是表單名稱如何從pyside中的QTableWidget獲取表單元值?
tblSession
是QTableWidget
對象
shift_id=form_shift.tblSession.item(1,0).text()
錯誤:
AttributeError: 'NoneType' object has no attribute 'text'
這只是正常的我。也許你的桌子在這些座標處沒有物品?
table = QtGui.QTableWidget(5, 3, self)
for row in range(5):
for col in range(3):
table.setItem(row, col, QtGui.QTableWidgetItem("(%d, %d)" % (row, col)))
print("1,0: %s" % table.item(1, 0).text())
請張貼更多代碼,以便我們爲您提供幫助。 – 2012-02-24 10:02:21