2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 Width="100" Height="100">
5 <Ellipse x:Name="ball" Fill="Orange" Width="50" Height="50" Canvas.Left="25" Canvas.Top="25">
7 <EventTrigger RoutedEvent="Ellipse.Loaded">
9 <Storyboard x:Name="animation">
10 <ColorAnimationUsingKeyFrames
11 Storyboard.TargetName = "ball"
12 Storyboard.TargetProperty = "Fill">
13 <SplineColorKeyFrame Value="#00f" KeyTime="0:0:1" KeySpline="0.4,0.0 0.7,0.5" />
14 </ColorAnimationUsingKeyFrames>