C++ 入門指南 4.01
練習 27.10 參考程式 - 練習 QML 的 ProgressBar
import QtQuick import QtQuick.Controls ApplicationWindow { property int pbValue: 1 width: 300 height: 200 visible: true title: qsTr("過程指示測試") ProgressBar { height: 20 width: 200 anchors.centerIn: parent value: 0.75 } } /* 《程式語言教學誌》的範例程式 http://kaiching.org/ 檔名:main.qml 功能:示範 ProgressBar 型態 作者:張凱慶 */