1

我在 aQSplashScreen的构造函数中创建 a QMainWindow

MainApp::MainApp() : QMainWindow(),
    splashScreen(new QSplashScreen)
{
    splashScreen->setFixedSize(350, 120);
    //splashScreen->move(splashScreen->x()-175, splashScreen->y()-60); //inits with upperleft corner at screen center
    splashScreen->setWindowOpacity(0.85);
    splashScreen->setAttribute(Qt::WA_StyledBackground);
    splashScreen->setStyleSheet("QSplashScreen { background-color: #000;"
                                                "background-image: url('"+pathLogo+"');"
                                                "background-repeat: no-repeat;"
                                                "background-position: center;"
                                                "border: 2px solid #fac805; }");

        QLabel *vrsLbl = new QLabel(splashScreen);
        vrsLbl->resize(350, 13);
        vrsLbl->move(0, 80);
        vrsLbl->setPixmap(pxVersion);
        vrsLbl->setAlignment(Qt::AlignHCenter);

    splashScreen->show();
}

启动画面的左上角位于屏幕中央。简单的解决方法是移动它(因为它的大小是已知的),如上所述。

根据文档

启动画面出现在屏幕中央。

那么这里出了什么问题?

4

1 回答 1

3

我可能有点太快将其作为问题发布。

经过一些测试后,我发现当 aQSplashScreen为空时,它显然不会居中QPixmap

于 2018-11-07T16:09:49.077 回答