C++ 入門指南 4.01
練習 26.2 參考程式 - 練習 QML 的 Rectangle
import QtQuick Window { width: 300 height: 300 visible: true title: qsTr("長方形元件2") Rectangle { color: "red" width: 250 height: 250 x: 20 y: 30 Rectangle { color: "blue" width: 180 height: 180 x: 10 y: 50 Rectangle { color: "green" width: 100 height: 30 x: 40 y: 110 } } } } /* 《程式語言教學誌》的範例程式 http://kaiching.org/ 檔名:main.qml 功能:示範 Rectangle 型態 作者:張凱慶 */