程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> QT 等待對話框/進度--

QT 等待對話框/進度--

編輯:C++入門知識

用QT的,加載的一張gif圖片。記錄下來以後免得忘記。 [cpp]   #ifndef DIALOG_H   #define DIALOG_H      #include <QDialog>   #include <QLabel>   #include<QPainter>   #include<QMovie>      class Dialog : public QDialog   {       Q_OBJECT      public:       explicit Dialog(QWidget *parent = 0);       ~Dialog();      private:       QMovie *movie;       QLabel *label;   };      #endif // DIALOG_H     [cpp]   #include"dialog.h"      Dialog::Dialog(QWidget*parent):       QDialog(parent)   {  www.2cto.com     label = new QLabel(this);       this->setFixedSize(200,200);       setWindowOpacity(0.5);  //設置透明用;       this->setWindowFlags(Qt::Dialog|Qt::CustomizeWindowHint);          //取消對話框標題       //this->setWindowFlags(Qt::Dialog|Qt::FramelessWindowHint);          //取消對話框標題和邊框       //this->setAutoFillBackground(true);       this->setContentsMargins(0,0,0,0);       label->setContentsMargins(0,0,0,0);       /*QPalettepalette;palette.setBrush(QPalette::Background,QBrush(QPixmap("E:/qml/imgdialog/loading.gif")));      this->setPalette(palette)*/;       movie = new QMovie("loading.gif");       label->setMovie(movie);       movie->start();   }   Dialog::~Dialog()   {       delete label;       delete movie;   }     效果: loading.gif

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved