qt QTableWidget stylesheet

55 篇文章 0 订阅
16 篇文章 1 订阅

自己写了一个函数,封装QTableWidget的样式,根据自己的需求进行修改单元格的文字颜色、背景颜色等。

  • I wrote a function to encapsulate the style of QTableWidget and modify the text color and background color of the cell according to my own requirements.
/****************************************************************************
** file:
** brief: QTableWidgetItem设置样式
** Copyright (C)
** Author:
** E-Mail:
** Version 2.0.1
** Last modified: 2020.07.22
** Modified By: LLL-NEO-Karl
****************************************************************************/
void MainWindow::OnTableWidgetStyleSheet(QTableWidget *table,int row,int col,QString stringdata,QColor TextColor,QColor BackgroundColor,bool setItalic,bool setBold)
{
    QTableWidgetItem *item = new QTableWidgetItem(stringdata);//为单元格的内容
    item->setTextColor(TextColor);
    QFont nullFont;
    nullFont.setItalic(setItalic);
    nullFont.setBold(setBold);
    item->setFont(nullFont);
    item->setBackgroundColor(BackgroundColor);
    table->setItem(row, col, item);
}

调用:

        #if 1//设置显示字体的颜色 和单元格的背景颜色
        OnTableWidgetStyleSheet(ui->tableWidget,i,6,"NULL",QColor(255,0,0),QColor(255,255,255),false,true);
        OnTableWidgetStyleSheet(ui->tableWidget,i,7,"NULL",QColor(255,0,0),QColor(255,255,255),false,true);
        #endif

result:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值