QTableWidget清空或删除内容及表头样式内容

1、清空表格中所有内容

void QTableWidget::clear() [slot] //清空表格中所有内容(包含表头)
Removes all items in the view. This will also remove all selections and headers. 
 2、清空表格中的内容(不包含表头)

void QTableWidget::clearContents() [slot] //清空表格中的内容(不包含表头)。
 Removes all items not in the headers from the view. This will also remove all selections. The table dimensions stay the same.
3、删除表格中的某行中的某列内容

void QTableWidget::removeCellWidget(int row, int column) //删除表格中的某行中的某列内容。
 Removes the widget set on the cell indicated by row and column.
4、删除表格中的某列内容

void QTableWidget::removeColumn(int column) [slot] //删除表格中的某列内容。
 Removes the column column and all its items from the table.
5、删除表格中的某行内容

void QTableWidget::removeRow(int row) [slot] //删除表格中的某行内容。
 Removes the row row and all its items from the table
6、删除表格中的某行和某列

QTableWidgetItem * QTableWidget::takeItem(int row, int column) //删除表格中的某行和某列
 Removes the item at row and column from the table without deleting it.
7、删除表格中的水平标题头

QTableWidgetItem * QTableWidget::takeHorizontalHeaderItem(int column) //删除表格中的水平标题头
 Removes the horizontal header item at column from the header without deleting it.
8、删除表格中的垂直标题头

QTableWidgetItem * QTableWidget::takeVerticalHeaderItem(int row) //删除表格中的垂直标题头
 Removes the vertical header item at row from the header without deleting it.
9、设置该单元格为屏蔽状态,不能编辑和选中

ui->tableWidget->item(0,0)->setFlags(Qt::ItemIsEditable);//设置该单元格为屏蔽状态,不能编辑和选中。 
10、取消表头的在选中单元格时的高亮状态

ui->tableWidget->horizontalHeader()->setHighlightSections(false);//取消表头的在选中单元格时的高亮状态。
 11、取消表头的在选中单元格时的高亮状态

ui->tableWidget->verticalHeader()->setHighlightSections(false);//取消表头的在选中单元格时的高亮状态。 
12、设置表头的样式

ui->tableWidget->horizontalHeader()->setStyleSheet(“image: url(:/img/a.png);image-position:left; “); //设置表头的样式。 
13、删除QTableWidget自带的行号

QHeaderView* headerView = ui->tableWidget->verticalHeader();//m_ItemTable为QTableWidget
    headerView->setHidden(true);//隐藏tablewidget自带行号列


 
 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值