C++ 入門指南 4.01

練習 29.1 參考程式 - 練習 QML 的 Dialog

import QtQuick
import QtQuick.Controls

ApplicationWindow {
    width: 500
    height: 500
    visible: true
    title: qsTr("你好世界")

    Button {
        width: 100
        height: 100
        anchors.centerIn: parent
        text: qsTr("打開對話視窗")
        onClicked: dialog.open()
    }

    Dialog {
        id: dialog
        title: qsTr("你好世界")
        anchors.centerIn: parent
        standardButtons: Dialog.Ok | Dialog.Cancel

        onAccepted: console.log("Ok clicked")
        onRejected: console.log("Cancel clicked")
    }
}

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

上一頁 練習 28.10 參考程式 - 練習 QML 的 ToolSeparator
回 C++ 入門指南 4.01 目錄
下一頁 練習 29.2 參考程式 - 練習 QML 的 Button
回 C++ 教材
回程式語言教材首頁