qtableview 表格风格设置
Posted 卡贝天师
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qtableview 表格风格设置相关的知识,希望对你有一定的参考价值。
1、窗体无边框?
tableView->setFrameShape(QFrame::NoFrame);
2、表格内容无边框?
tableView->setShowGrid(false);
3、设置标题头风格?
tableView->horizontalHeader()->setStyleSheet("QHeaderView::section{background-color: rgb(205,205,205)};");
4、表格交替变色?
tableView->setStyleSheet("QTableView{background-color: rgb(255, 255, 255);alternate-background-color: rgb(233, 248, 254)}");
tableView->setAlternatingRowColors(true);
以上是关于qtableview 表格风格设置的主要内容,如果未能解决你的问题,请参考以下文章
QTableView的表格项中加入图标的方法(重载View::mouseMoveEvent,并使用View::setIconSize函数设置图标的大小)