blob: cb054d214d9bb261c3be75197c4ba13f72fcbb43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import QtQuick 1.0
Rectangle {
id: myRectangle
property color sourceColor: "red"
property color sourceColor2: "blue"
width: 100; height: 100
color: sourceColor
states: State {
name: "blue"
PropertyChanges { target: myRectangle; color: sourceColor2 }
}
}
|