C++ 入門指南 4.01
練習 27.6 參考程式 - 練習 QML 的 ToolBar
import QtQuick import QtQuick.Controls import QtQuick.Layouts ApplicationWindow { width: 300 height: 200 visible: true title: qsTr("工具列測試") header: ToolBar { RowLayout { anchors.fill: parent ToolButton { text: qsTr("Red") onClicked: rect.color = "red" } ToolButton { text: qsTr("Blue") onClicked: rect.color = "blue" } ToolButton { text: qsTr("Green") onClicked: rect.color = "green" } } } Rectangle { id: rect anchors.fill: parent } } /* 《程式語言教學誌》的範例程式 http://kaiching.org/ 檔名:main.qml 功能:示範 Toolbar 及 ToolButton 型態 作者:張凱慶 */