aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativebehaviors/data/cpptrigger.qml
blob: f033ec5aeb8e1b524b54e8def6dc83fd843e9440 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0
Rectangle {
    width: 400
    height: 400
    Rectangle {
        id: rect
        objectName: "MyRect"
        width: 100; height: 100; color: "green"
        Behavior on x { NumberAnimation { duration: 500; } }
    }
}