2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 Width="100" Height="200">
5 <Rectangle Fill="Black" Width="50" Height="150" Canvas.Left="25" Canvas.Top="25">
6 <Rectangle.RenderTransform>
8 <ScaleTransform x:Name="transform" ScaleX="1" ScaleY="1" CenterX="0" CenterY="0"/>
10 </Rectangle.RenderTransform>
12 <EventTrigger RoutedEvent="Rectangle.Loaded">
14 <Storyboard Duration="0:0:2">
15 <DoubleAnimationUsingKeyFrames Storyboard.TargetName="transform" Storyboard.TargetProperty="ScaleY">
16 <SplineDoubleKeyFrame KeyTime="0:0:2"/>
17 </DoubleAnimationUsingKeyFrames>