blob: 30b0b6a5e4fe154f4c03425d5b8fd749595f82c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<Rect color="blue" width="320" height="240" id="Page">
<Rect id="MyRect" width="100" height="100" color="red" x="{10}" />
<states>
<State name="hello">
<SetProperty target="{MyRect}" property="x" binding="100" />
<SetProperty target="{MyMouseRegion}" property="onClick" value="Page.currentState = ''" />
</State>
</states>
<transitions>
<Transition>
<NumericAnimation properties="x" />
</Transition>
</transitions>
<MouseRegion id="MyMouseRegion" anchors.fill="{parent}" onClick="Page.currentState= 'hello'" />
</Rect>
|