http://blog.sina.com.cn/s/blog_6e01112f0102vcfl.html
1).如果widget是顶层窗口(无父类的窗口)
设置背景图片:
QImage _image;
_image.load("./videoarea.png");
setAutoFillBackground(true); // 这个属性一定要设置
QPalette pal(palette());
pal.setBrush(QPalette::Window, QBrush(_image.scaled(size(), Qt::IgnoreAspectRatio,
Qt::SmoothTransformation)));
setPalette(pal);
设置背景颜色:
this->setStyleSheet("background-color:rgb(255,34,198)");
2)如果widget是子窗口
设置背景图片
可以这样(1):
QImage _image;
_image.load("./videoarea.png");
ui->widget->setAutoFillBackground(true); // 这个属性一定要设置
QPalette pal(palette());
pal.setBrush(QPalette::Window, QBrush(_image.scaled(size(), Qt::IgnoreAspectRatio,
Qt::SmoothTransformation)));
ui->widget->setPalette(pal);
也可以这样(2):
ui->widget->setStyleSheet("border-image:url(./videoarea.png)");
设置背景颜色:
ui->widget->setStyleSheet("background-color:rgb(255,34,198)");
总结:
1:不要在顶层窗口(无父类的窗口)中使用setStyleSheet() ,否则其一父窗口的背景不会改变,其次其子窗口的背景设置方法变得局限唯一,不能再使用其它方法!
2:2:如果一个一般窗口(非顶层窗口)还有子窗口,那最好不要使用setStyleSheet()来设置其背景颜色,因为虽然此时该窗口的背景设置是生效的,但是其子窗口的背景设置也变得局限唯一,只能使用setStyleSheet,而不能使用其它方法! 当然:你如果就是只想使用这种方法,那也完全可以!!
说白了就是:不要再MainWindow中使用setStyleSheet()!