在我的应用程序中我有一个表格小部件,通过使用样式表我试图更改标题边框和单元格背景颜色。请参阅下面的代码,
//to set cell background color as white
tableWidget->setStyleSheet(" QTableWidget::item { border: 1px solid white; }" );
//to set header background as white
tableWidget->setStyleSheet("QHeaderView::section{background-color: black;color:white;border: 1px solid white;}");
现在我想在样式表中合并两者。指导我如何将上面两个样式表组合成一个样式表。
答案 0 :(得分:0)
//to set cell background color as white
QString styleSheet = " QTableWidget::item { border: 1px solid white; }";
//to set header background as white
styleSheet += "QHeaderView::section{background-color: black;color:white;border: 1px solid white;}";
tableWidget->setStyleSheet(stylesheet);
但是,您可以将所有内容放在一行中,无需将样式表拆分为两个部分。