我有一个循环。我创建了一个QCheckBox并将其放在QTableWidget单元格中,一切正常。在循环的每个步骤中,我都connect为myslot SLOT 调用了一个函数,但仅应用了最后一个QCheckBox实例。我在Google上搜索了很多,发现很多人遇到我的问题。我已经应用了他们的解决方案,但是我的问题仍然存在。for row in xrange(len(uniqueFields)): instance = QtGui.QCheckBox(uniqueFields[row], findInstance.tableWidget) print QtCore.QObject.connect(instance, QtCore.SIGNAL(_fromUtf8("stateChanged (int)")), lambda: findInstance.projectsInstance.myslot( "TWCH", findInstance, instance.text(), instance.checkState(), instance)) findInstance.tableWidget.setRowCount(findInstance.tableWidget.rowCount() + 1) findInstance.tableWidget.setCellWidget(row, 0, instance)注意:我的connect函数return True。如何connect在枚举所有instances?的循环中创建函数?
3 回答
摇曳的蔷薇
TA贡献1793条经验 获得超6个赞
我有同样的问题,您应该使用functools.partial例如:
for key, val in a_DICT_THAT_YOU_STORED_YOUR_OBJECTS_AND_STRINGS:
obj = partial( findInstance.projectsInstance.myslot,arg1="TWCH",arg2=self,arg3=key,arg4=val.checkState() )
QtCore.QObject.connect(val, QtCore.SIGNAL(_fromUtf8("stateChanged (int)")), obj)
当然,argX应该设置为函数名称参数的真实名称。
添加回答
举报
0/150
提交
取消