blob: 15be13d2cc4923f370243efe1591589cd9d24a4d [file] [log] [blame]
<Shell xmlns="http://www.eclipse.org/xwt/presentation"
xmlns:x="http://www.eclipse.org/xwt"
name="window"
>
<Shell.layout>
<GridLayout numColumns="1"/>
</Shell.layout>
<Label name="labelTarget" text="Int the animation"/>
<Button name="startButton" text="Start Animation">
<Button.triggers>
<!-- Begin the Storyboard -->
<EventTrigger routedEvent="SelectionEvent">
<BeginStoryboard name="MyBeginStoryboard">
<Storyboard>
<RectangleAnimation
targetName="window"
targetProperty="bounds"
duration="0:0:1" from="10, 10, 150, 150" to="300, 300, 600, 600" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Button.triggers>
</Button>
</Shell>