QT实现启动画面

时间:2021-04-05 05:22:33

只需要将主函数改为类似于下面的形式即可

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QPixmap pixmap(":/splash.jpg");
QSplashScreen splash(pixmap);
splash.show();
a.processEvents();

MainWindow w;
w.show();
splash.finish(&w);
return a.exec();
}