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

ToolButton {
    text: "ToolButton"
    Rectangle {
        anchors.fill: label
        color: 'transparent'
        border.color: 'red'
    }
}