qt-设置启动界面
Posted shangangjun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qt-设置启动界面相关的知识,希望对你有一定的参考价值。
#include "musicwidget.h"
#include <QApplication>
#include <QDateTime>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QPixmap pixmap(":/resources/default_album.jpg"); //启动界面图片
QSplashScreen screen(pixmap);
screen.show();
screen.showMessage("LOVE", Qt::AlignCenter, Qt::red);
a.processEvents(); //防止界面卡死
screen.showMessage("LOVE");
QDateTime n=QDateTime::currentDateTime();
QDateTime now;
do{
now=QDateTime::currentDateTime();
} while (n.secsTo(now)<=5);
MusicWidget w;
w.show();
screen.finish(&w);
return a.exec();
以上是关于qt-设置启动界面的主要内容,如果未能解决你的问题,请参考以下文章