C++ 入門指南 4.01

練習 28.5 參考程式 - 練習 QML 的 TextArea

import QtQuick
import QtQuick.Controls

ApplicationWindow {
    width: 300
    height: 200
    visible: true
    title: qsTr("文字輸入測試1")

    TextArea {
        width: 240
        height: 160
        anchors.centerIn: parent
        placeholderText: qsTr("這裡可以輸入多行文字~~\n第二行\n第三行")
    }
}

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

上一頁 練習 28.4 參考程式 - 練習 QML 的 Slider
回 C++ 入門指南 4.01 目錄
下一頁 練習 28.6 參考程式 - 練習 QML 的 TextField
回 C++ 教材
回程式語言教材首頁