aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/qtlabscontrols-textfield-background.qml
blob: 6fcc3391da55d7106b34ee153c8e648a5ebba57f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0
import Qt.labs.controls 1.0

TextField {
    width: 80
    text: "TextField"
    Rectangle {
        anchors.fill: background
        color: 'transparent'
        border.color: 'red'
    }
}