aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativebehaviors/data/scripttrigger.qml
blob: ff71f2b1b0db26d4dcf6f66a6feed76283cee3ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0
Rectangle {
    width: 400
    height: 400

    onColorChanged: {
        rect.x = 200
    }

    Rectangle {
        id: rect
        objectName: "MyRect"
        width: 100; height: 100; color: "green"
        Behavior on x { NumberAnimation { duration: 800; } }
    }
}