Mega Code Archive

 
Categories / Silverlight / Animations
 

Syntax of Storyboard element with multiple animations

<UserControl x:Class='SilverlightApplication3.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:DesignWidth='640'      d:DesignHeight='480'>     <Grid x:Name="LayoutRoot" Background="White">         <Grid.Resources>             <Storyboard x:Name="myStoryboard" Storyboard.TargetName="myRectangle">                 <DoubleAnimation x:Name="myDoubleAnimation" Duration="00:00:03"                      Storyboard.TargetProperty="Opacity"                      From="0" To="1" />                 <ColorAnimation x:Name="myColorAnimation" Duration="00:00:03"                     Storyboard.TargetProperty="(Shape.Fill).(SolidColorBrush.Color)"                      From="Green" To="Blue" />             </Storyboard>         </Grid.Resources>         <Rectangle x:Name="myRectangle" Width="180" Height="60" Fill="Green"              Opacity="0" />     </Grid> </UserControl>