📜  带有边框 qml 的 textarea - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:43.840000             🧑  作者: Mango

代码示例1
Rectangle {
    color: "green"
    anchors.fill: parent
    anchors.margins: 20

    TextArea {
        anchors.fill: parent
        anchors.margins: 1
        style: TextAreaStyle {
            backgroundColor : "yellow"
        }

    }
}