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

Frame {
    width: 100
    height: 100
    background: Rectangle {
        color: 'transparent'
        border.color: 'red'
    }
}