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