aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/button/qtlabscontrols-button-background.qml
blob: 287fe380c3d377e4a78b98273de9c91f9b89194e (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: background
        color: 'transparent'
        border.color: 'red'
    }
}