aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/qtlabscontrols-spinbox-background.qml
blob: 6554597007d0f7088e6bb43ab020515206fc4d30 (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: parent
        color: "transparent"
        border.color: "red"
    }
}