aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativestates/data/basicBinding4.qml
blob: b29f0fcf22b447686bfc6aa715e553d85dd46b59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.0
Rectangle {
    id: myRectangle

    property color sourceColor: "blue"
    width: 100; height: 100
    color: "red"
    states: [
        State {
            name: "blue"
            PropertyChanges { target: myRectangle; color: sourceColor }
        },
        State {
            name: "green"
            PropertyChanges { target: myRectangle; color: "green" }
        }]
}