qt qwidget设置背景图片
时间: 2024-01-10 19:20:29 浏览: 298
QT_APP添加背景图片
4星 · 用户满意度95%
以下是使用Qt给QWidget设置背景图片的两种方法:
1. 使用QPalette设置背景图片
```cpp
QPixmap background(":/background.png");
QPalette palette;
palette.setBrush(QPalette::Background, QBrush(background));
this->setPalette(palette);
```
2. 通过样式表设置背景图片
```cpp
QString style = "QWidget{background-image: url(:/background.png);}";
this->setStyleSheet(style);
```
阅读全文