Qt学习——程序启动画面QSplashScreen类 .

 
view plain copy to clipboard print ?
  1. #include <QtGui/QApplication>   
  2. #include "mainwindow.h"   
  3. #include <QPixmap>   
  4. #include <QSplashScreen>   
  5. int main(int argc, char *argv[])  
  6. {  
  7.     QApplication a(argc, argv);  
  8.     QPixmap pixmap("1.jpg");  
  9.     QSplashScreen splash(pixmap);  
  10.     splash.show();  
  11.     a.processEvents();  
  12.   
  13.     MainWindow w;  
  14.     w.show();  
  15.   
  16.     splash.finish(&w);  
  17.     return a.exec();  
  18. }  
#include <QtGui/QApplication> #include "mainwindow.h" #include <QPixmap> #include <QSplashScreen> int main(int argc, char *argv[]) { QApplication a(argc, argv); QPixmap pixmap("1.jpg"); QSplashScreen splash(pixmap); splash.show(); a.processEvents(); MainWindow w; w.show(); splash.finish(&w); return a.exec(); }

Qt学习——程序启动画面QSplashScreen类 ._第1张图片

Qt学习——程序启动画面QSplashScreen类 ._第2张图片

你可能感兴趣的:(qt)