summaryrefslogtreecommitdiffstats
path: root/examples/declarative/behaviours/MyRect.qml
blob: dc9a094fd4ebe28de61af38ea0c2855dcd1a41ab (plain)
1
2
3
4
5
6
7
8
9
10
11
Rect {
    radius: 15
    pen.color: "black"
    width: 100
    height: 100
    id: Page
    MouseRegion {
        anchors.fill: parent
        onClicked: { bluerect.parent = Page; bluerect.x=0 }
    }
}