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

SpinBox {
    value: 50
    Rectangle {
        anchors.fill: contentItem
        color: "transparent"
        border.color: "red"
    }
}