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

Frame {
    width: 100
    height: 100
    Rectangle {
        parent: frame
        anchors.fill: parent
        color: 'transparent'
        border.color: 'red'
    }
}