aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/rangeslider.qml
blob: ce3dc8724e4652e18ac20f8057927a4384fcd63a (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 QtQuick.Controls 2.0

Window {
    visible: true

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