qt6-bb10/qtdeclarative/tests/auto/quick/qquicktextinput/data/echoMode.qml

16 lines
298 B
QML

import QtQuick 2.0
Rectangle {
property QtObject myInput: input
width: 400; height: 200; color: "green"
TextInput { id: input; focus: true
width: 400; height: 200
text: "ABCDefgh"
cursorDelegate: Rectangle {
objectName: "cursor"
}
}
}