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

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