aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/qtlabscontrols-scrollbar.qml
blob: 9de22a66f5f18ee1ff812e797749854a56864f1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import QtQuick 2.0
import Qt.labs.controls 1.0

Rectangle {
    width: 100
    height: 100
    border.color: Theme.frameColor

    ScrollBar {
        size: 0.3
        position: 0.2
        active: true
        orientation: Qt.Vertical
        height: parent.height
        anchors.right: parent.right
    }

    ScrollBar {
        size: 0.6
        position: 0.3
        active: true
        orientation: Qt.Horizontal
        width: parent.width
        anchors.bottom: parent.bottom
    }
}