设置QLabel的文字为788颜色为红色,背景为白色
时间: 2024-02-24 20:56:20 浏览: 103
044 QLabel设置文件格式颜色背景色字体和大小.7z
5星 · 资源好评率100%
您可以使用以下代码来实现:
```cpp
QLabel *label = new QLabel("788");
label->setStyleSheet("color: red; background-color: white;");
```
其中,`QLabel` 是一个用于显示文本或图像的控件类,`new QLabel("788")` 创建了一个显示 "788" 文字的 `QLabel` 对象。`setStyleSheet()` 方法中,`color: red` 设置了文字颜色为红色,`background-color: white` 设置了背景色为白色。
阅读全文