aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquicktextinput/data/echoMode.qml
blob: f8a6cf1c89640e4e9b141e34108d7149090ec2fb (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

Rectangle {
    property QtObject myInput: input

    width: 400; height: 200; color: "green"

    TextInput { id: input; focus: true
        text: "ABCDefgh"
    }
}