blob: 685346a8799548eb58f6c83e57c8a9d73b971c71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import QtQuick 1.0
Rectangle {
width: 200; height: 200
Rectangle {
objectName: "filler"
width: 50; height: 50; color: "blue"
anchors.fill: parent;
anchors.margins: 10
anchors.leftMargin: 5
anchors.topMargin: 6
}
}
|