程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> QT5-控件-QProgressBar-進度條-用來做下載進度,文件讀取進度還不錯,qt5--qprogressbar-

QT5-控件-QProgressBar-進度條-用來做下載進度,文件讀取進度還不錯,qt5--qprogressbar-

編輯:C++入門知識

QT5-控件-QProgressBar-進度條-用來做下載進度,文件讀取進度還不錯,qt5--qprogressbar-


#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QProgressBar>

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    MainWindow(QWidget *parent = 0);
    ~MainWindow();

    QProgressBar* progress[10] ;
};

#endif // MAINWINDOW_H
#include "mainwindow.h"

MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
{
    this->resize(400,300);
    progress[0] = new QProgressBar(this);
    progress[0]->setMinimum(0);\
    progress[0]->setMaximum(100);
    progress[0]->setValue(50);
    progress[0]->setOrientation(Qt::Horizontal);
    progress[0]->setGeometry(10,30,300,30);

    progress[1] = new QProgressBar(this);
    progress[1]->setRange(0,100);
    progress[1]->setValue(70);
    progress[1]->setOrientation(Qt::Horizontal);
    progress[1]->setGeometry(10,70,300,30);
    progress[1]->setInvertedAppearance(true); // 設置為true則與默認方向相反
}

MainWindow::~MainWindow()
{

}
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}

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