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

Window {
    visible: true

    ProgressBar {
        id: progressbar
        objectName: "progressbar"
        from: 0
        to: 100
        value: 50
    }
}