<Canvas x:Name="LayoutRoot">
<Canvas.Resources>
<Storyboard x:Name="MyStoryboard">
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="rect" Storyboard.TargetProperty="Width">
<DiscreteDoubleKeyFrame KeyTime="00:00:01" Value="200" />
<DiscreteDoubleKeyFrame KeyTime="00:00:02" Value="300" />
<DiscreteDoubleKeyFrame KeyTime="00:00:03" Value="400" />
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</Canvas.Resources>
<Rectangle x:Name="rect" Width="100" Height="100" Canvas.Left="0" Canvas.Top="0">
<Rectangle.Fill>
<SolidColorBrush Color="Red" />
</Rectangle.Fill>
</Rectangle>
</Canvas>
View : http://myifu.com/_study/silverlight/template_animation_12_usingkeyframe04/