aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/rangeslider.qml
blob: 9262f3cd219b5195d1c6b15b00f993f17292a359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.5
import QtQuick.Window 2.2
import Qt.labs.controls 1.0

Window {
    visible: true

    RangeSlider {
        id: rangeSlider
        objectName: "rangeslider"
        from: 0
        to: 100
        first.value: 25
        second.value: 75
        stepSize: 1
        orientation: "Horizontal"
    }
}