Mega Code Archive

 
Categories / Silverlight / UI Controls
 

Create an animated Popup control

<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'>   <StackPanel>     <CheckBox Name="myCheckBox" Margin="20,20,0,0" Content="Select CheckBox to see Popup"/>     <Button HorizontalAlignment="Left" Width="200" Margin="20,10,0,0">       <Button.Triggers>         <EventTrigger RoutedEvent="Button.Click">           <BeginStoryboard>             <Storyboard>               <DoubleAnimation                  Storyboard.TargetName="theTransform"                 Storyboard.TargetProperty="(RotateTransform.Angle)"                  From="0" To="360" Duration="0:0:5" AutoReverse="True"/>             </Storyboard>           </BeginStoryboard>         </EventTrigger>       </Button.Triggers>       Click to see the Popup animate     </Button>   </StackPanel> </UserControl>