对于Qt来说mianwidow只是一个工程对象,对于整个软件的启动还是在main.cpp中完成的
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QPixmap pixmap(":/png/res/启动界面2.png");//背景图
QSplashScreen screen(pixmap);//定义一个临时启动界面
screen.show();//在软件启动之前显示
screen.showMessage("正在启动软件...", Qt::AlignCenter|Qt::AlignBottom, Qt::red);//启动界面底部居中显示的字体
#if 1//在这个开关里面延时1s,保证启动界面至少有一秒
QDateTime n=QDateTime::currentDateTime();
QDateTime now;
do
{
now=QDateTime::currentDateTime();
a.processEvents();
}
while (n.secsTo(now)<=1);//需要延时的秒数
#endif
MainWindow w;
w.show();//软件界面启动
screen.finish(&w);//关闭启动界面
return a.exec();
}
时间: 2024-11-05 13:55:27