C++ 入門指南 4.01
練習 26.10 參考程式 - 練習 QML 的 ScrollView
import QtQuick import QtQuick.Controls ApplicationWindow { width: 400 height: 200 visible: true title: qsTr("滾動測試") ScrollView { anchors.fill: parent clip: true Label { text: qsTr("There\nis\nno\nspoon.") font.pixelSize: 200 } } } /* 《程式語言教學誌》的範例程式 http://kaiching.org/ 檔名:main.qml 功能:示範 Scroll 型態 作者:張凱慶 */