aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/button/qtquickcontrols2-button-label.qml
blob: d7f76f0f5f7d03f581087747af38f7f0ed55607c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0
import QtQuick.Controls 2.0

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