如您所知,您可以使用setCellWidget
为QTableWidget中的单元格设置窗口小部件:
table->setCellWidget(0, 0, new QProgressBar);
在某些情况下,我只是想摆脱这个小部件,一切都变得像没有单元格小部件。我测试了将小部件设置为nullptr
,但它没有帮助
换句话说,QTableWidget
中单元格的默认小部件是什么?
答案 0 :(得分:1)
您必须使用void QTableWidget::removeCellWidget(int row, int column)
在你的情况下:
table->removeCellWidget(0, 0);