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

RangeSlider {
    first.value: 0.25
    second.value: 0.75
    Rectangle {
        anchors.fill: track
        color: "transparent"
        border.color: "red"
    }
}