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

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