<UserControl x:Class="SilverlightMap1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400" Loaded="UserControl_Loaded">
<Grid x:Name="LayoutRoot" Background="White">
<Canvas Background="AliceBlue">
<Ellipse x:Name="ellipse1" Fill="GreenYellow" Width="150" Height="20"></Ellipse>
<Canvas.Triggers>
<EventTrigger RoutedEvent="Canvas.Loaded">
<EventTrigger.Actions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="ellipse1" Storyboard.TargetProperty="Width" From="150" To="800" Duration="0:0:6">
</DoubleAnimation>
<DoubleAnimation Storyboard.TargetName="ellipse1" Storyboard.TargetProperty="Height" From="20" To="80" Duration="0:0:6">
</DoubleAnimation>
<ColorAnimation Storyboard.TargetName="ellipse1" Storyboard.TargetProperty="(Ellipse.Fill).(SolidColorBrush.Color)" From="GreenYellow" To="Red" Duration="0:0:8">
</ColorAnimation>
</Storyboard>
</BeginStoryboard>
</EventTrigger.Actions>
</EventTrigger>
</Canvas.Triggers>
</Canvas>
</Grid>
</UserControl>