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

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