qt6-bb10/qtdeclarative/tests/auto/quick/qquickstates/data/basicBinding4.qml

18 lines
397 B
QML

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" }
}]
}