摆脱QTableWidgetItem中的单元格小部件

时间:2017-11-08 02:40:56

标签: c++ qt qt5 qtablewidget

如您所知,您可以使用setCellWidget为QTableWidget中的单元格设置窗口小部件:

table->setCellWidget(0, 0, new QProgressBar);

在某些情况下,我只是想摆脱这个小部件,一切都变得像没有单元格小部件。我测试了将小部件设置为nullptr,但它没有帮助 换句话说,QTableWidget中单元格的默认小部件是什么?

1 个答案:

答案 0 :(得分:1)

您必须使用void QTableWidget::removeCellWidget(int row, int column)

在你的情况下:

table->removeCellWidget(0, 0);