设置QComboBox cellwidget时出错

时间:2016-10-19 00:42:08

标签: pyqt qtablewidget qcombobox

我正在尝试设置使用setCellWidget创建的QComboBox的索引,该QComboBox在QTableWidget中设置 为什么尽管我使用cellWidget调用组合框,但是在尝试设置索引时遇到错误,尽管它的类型仍然是QComboBox?

for row in xrange(self.table.rowCount()):
    combo = self.table.cellWidget(row, 1)
    print type(combo) # returns <type 'PySide.QtGui.QComboBox'>
    combo.setCurrentIndex(2) 

AttributeError: 'NoneType' object has no attribute 'setCurrentIndex'

0 个答案:

没有答案