标签:sheet 标题 ati rgb tableview alternate 窗体 view shape
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);
标签:sheet 标题 ati rgb tableview alternate 窗体 view shape
原文地址:https://www.cnblogs.com/kabe/p/8952784.html