标签:
方法1. setStylSheet{"QDialog{background-image:url()"}} //使用styleSheet 这种方法的好处是继承它的dialog都会自动设置背景,例如更换皮肤就是一个不错的选择
方法2. QPalette pal;
pal.setBrush(QPalette::Background,QBrush(QPixmap("")));
this->setPalette(pal);
方法3.在paintEvent(QPaintEvent *)事件中 //这种用于各种自定义控件
QPainter painter(this);
painter.drawPixmap(rect(), QPixmap&);
http://blog.csdn.net/what951006/article/details/51538812
标签:
原文地址:http://www.cnblogs.com/findumars/p/5578864.html