aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/slider.qml
blob: 565d98a9bea36be8b7180cdcf5966df41277757a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.5
import QtQuick.Window 2.2
import QtQuick.Controls 2.1

Window {
    visible: true

    Slider {
        id: slider
        objectName: "slider"
        from: 0
        to: 100
        value: 50
        stepSize: 1
        orientation: "Horizontal"
    }
}