aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativebehaviors/data/startup.qml
blob: 9fa74ca39e54665424066accebc8ebb98a8420a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.0

Rectangle {
    width: 400
    height: 400

    Rectangle {
        objectName: "innerRect"
        height: 100; width: 100; color: "green"
        property real targetX: 100

        x: targetX
        Behavior on x {
            NumberAnimation {}
        }
    }
}