aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/basicBinding2.qml
blob: a329da33ddda5c6b049a01fd38836a3054bfad37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 1.0
Rectangle {
    id: myRectangle

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