《Qt5实战》之界面启动全屏加载背景图片

void MainWidget::showEvent(QShowEvent *event)
{
	//全屏
    showFullScreen();

	//动态加载背景图片
    QPixmap pixmap("../images/bg.png");
    QPixmap bgpixmap = pixmap.scaled(width(), height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation);  // 饱满填充
    QPalette palette;
    palette.setBrush(QPalette::Window, QBrush(bgpixmap));
    setPalette(palette);
}

 

上一篇:c – Qt 5迁移 – 无法打开包含文件:’ui_mainwindow.h’


下一篇:python Qt5 实战(一)按钮颜色