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

Window {
    visible: true

    SpinBox {
        id: spinbox
        objectName: "spinbox"
        from: 0
        to: 100
        value: 50
        stepSize: 1
    }
}