Create an animated Popup control. : Popup « Windows Presentation Foundation « C# / C Sharp






Create an animated Popup control.

     

<Window x:Class="SDKSample.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="AnimatedPopup">
  <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>
</Window>

   
    
    
    
    
  








Related examples in the same category

1.Rotating PopupRotating Popup
2.Create Popup mock in XamlCreate Popup mock in Xaml
3.Close a Popup with Button clickClose a Popup with Button click
4.Use Popup to display a hyperlinkUse Popup to display a hyperlink
5.PopupAnimation = PopupAnimation.FadePopupAnimation = PopupAnimation.Fade
6.PopupAnimation = PopupAnimation.Scroll;PopupAnimation = PopupAnimation.Scroll;
7.PopupAnimation = PopupAnimation.Slide;PopupAnimation = PopupAnimation.Slide;