summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml
blob: 0320872b86f869a43bf913900cfce66e1e2f9bcd (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.0

Rectangle {
    property QtObject myInput: input

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

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