aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickstates/data/basicBinding.qml
blob: 59b67d08638565ac089683fad22c65787c96e92b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 }
    }
}