C++ 入門指南 4.01

練習 28.8 參考程式 - 練習 QML 的 Drawer

import QtQuick
import QtQuick.Controls

ApplicationWindow {
    id: window
    width: 300
    height: 200
    visible: true
    title: qsTr("抽頁內容測試")

    Drawer {
        width: 0.8 * window.width
        height: window.height

        Label {
            text: "抽頁內容"
            anchors.centerIn: parent
        }
    }
}

/* 《程式語言教學誌》的範例程式
   http://kaiching.org/
   檔名:main.qml
   功能:示範 Drawer 型態
   作者:張凱慶 */
回到練習題目

上一頁 練習 28.7 參考程式 - 練習 QML 的 Tumbler
回 C++ 入門指南 4.01 目錄
下一頁 練習 28.9 參考程式 - 練習 QML 的 MenuSeparator
回 C++ 教材
回程式語言教材首頁