qt Qtablewidget某些单元格的控件不显示

时间:2021-09-30 18:09:00

QcheckBox box[100];

for(int i = 0; i < 2; i++)

{

tableWidget->setCellWidget(3, 1, box[i]);

tableWidget->setCellWidget(3, 2, box[i+1]);

tableWidget->setCellWidget(3, 3, box[i+2];

}

结果发现第一个窗体有第三行有很多控件不显示。原因是box对象重叠了。