#include "QPixmap"
#include "QSplashScreen"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QPixmap pixmap("11.png");//加入图片.png("Resoures//11.png")
QSplashScreen splash(pixmap); //与界面关联
splash.show();//将其画面显示出来
MainWindow w;
w.show();
splash.finish(&w); //关闭显示
return a.exec();
}
08-11
266
10-29
659
11-02
301