欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

QT 【样式表】

程序员文章站 2022-03-22 10:20:12
设置样式QApplication::setStyleSheet()QWidget::setStyleSheet()样式background背景样式表语法样式规则一个样式规则由 选择器和声明 构成. 选择器 指定哪个widget受该规则影响.声明 指定哪些熟悉被设置.例:QPushButton { color: red } // QPushButton 与 QPushButton 的子类的前景色为红色QPus....
  • 设置样式
QApplication::setStyleSheet()
QWidget::setStyleSheet()
  • 样式
background 背景

1 样式表语法

1.1 样式规则
一个样式规则由 选择器和声明 构成. 
选择器 指定哪个widget受该规则影响.
声明   指定哪些熟悉被设置.
例:
	QPushButton {
    color: red }   // QPushButton 与 QPushButton 的子类的前景色为红色
	QPushButton, QLineEdit, QComboBox {
    color: red }  // 多个选择器由 逗号隔开
	QPushButton {
    color: red; background-color: white } //

本文地址:https://blog.csdn.net/u011310383/article/details/109250008

相关标签: QT