转载自:: Qt中使用setStyleSheet对QPushButton按钮进行外观设置 | 学步园
http://www.xuebuyuan.com/1832172.html
字体颜色的设置一般时以下两种方案:
(1)属于QWidget子类的一些控件
可以直接使用样式表,例如label->setStyleSheet("color:white");
(2)不属于QWidget子类的控件
可以考虑设置其前景色,例如各种ViewtreeWidgetItem->setForeground(0,QBrush(QColor(Qt::white)));
-------------------------------------------------------------------------------------------------
我要实现的效果:
正常状态下:黑底(背景色),白字(前景色),圆角,向外凸起;
鼠标停留:背景和前景都反色;
鼠标按下:背景色变为淡蓝色,向内凹陷。
代码:
ui->pushButton_GoToProcess->setStyleSheet("QPushButton{background-color:black;\
color: white; border-radius: 10px; border: 2px groove gray;\
border-style: outset;}"
"QPushButton:hover{background-color:white; color: black;}"
"QPushButton:pressed{background-color:rgb(85, 170, 255);\
border-style: inset; }"
);