aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/button/qtlabscontrols-button-label.qml
blob: a068bcb2ddf1eb1d50a252d181859e2d69217ab1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0
import Qt.labs.controls 1.0

Button {
    width: 80
    text: "Button"
    Rectangle {
        anchors.fill: label
        color: 'transparent'
        border.color: 'red'
    }
}