Create an animated Popup control. : Popup « UI Controls « Silverlight






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>

   
    
    
    
  








Related examples in the same category

1.Popup with TextBlockPopup with TextBlock
2.A basic PopupA basic Popup
3.Open a PopupOpen a Popup