1

我想为我的表单设置背景颜色

像这样

body
{
  background-color: #fff;
}

我正在使用 QWidget 选择器,但我只想更改窗口背景;

以及如何为所有窗口创建一个样式表?

4

1 回答 1

3

您可以为任何QWdiget. 如果它是您的主窗口,您可以执行以下操作:

QString style = "QMainWindow { background-color: #fff; }";  // or other color
this->setStyleSheet(style); // assuming you are calling from the QMainWindow inherited class

您可以对主窗口中的单个小部件执行相同操作,例如QLabel实例化为label

QString style = "QLabel { background-color: #fff; }";  // or other color
label->setStyleSheet(style);

您还可以定位另一个的所有子小部件或指定单个子小部件。看看http://doc.qt.io/archives/qt-4.7/stylesheet-examples.html

于 2012-08-19T14:40:50.767 回答