1 int main()
 2 {
 3     QApplication app(argc, argv);
 4     QPixmap pixmap("Qt.png");
 5     QSplashScreen splash(pixmap);
 6     splash.show();
 7 
 8     a.processEvent(); //使得在 启动期间仍然可以响应鼠标事件
 9 
10     MainWIndow m;
11     m.show();
12 
13     splash.finish(&w);
14 }