1 <Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
4 <Rectangle x:Name="rect-one" Fill="Red" Stroke="Black" StrokeThickness="3"
5 Canvas.Left="10" Canvas.Top="10" Width="100" Height="100">
8 <EventTrigger RoutedEvent="Rectangle.Loaded">
12 Storyboard.TargetName="rect-one"
13 Storyboard.TargetProperty="Width"
14 From="10" To="300" Duration="0:0:30"
23 <Rectangle x:Name="rect-two" Fill="Red" Stroke="Black" StrokeThickness="3"
24 Canvas.Left="10" Canvas.Top="150" Width="100" Height="100">
27 <EventTrigger RoutedEvent="Rectangle.Loaded">
31 Storyboard.TargetName="rect-two"
32 Storyboard.TargetProperty="Width"
33 From="10" To="300" Duration="0:0:30"