Rotating Popup : Popup « Windows Presentation Foundation « C# / CSharp Tutorial






<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>
    <Popup IsOpen="{Binding ElementName=myCheckBox,Path=IsChecked}" 
           PlacementTarget="{Binding ElementName=myCheckBox}"            
           AllowsTransparency="True"
           PopupAnimation="Slide"
           HorizontalOffset="50"
           VerticalOffset="50"
           >
      <Canvas Width="100" Height="100" Background="DarkBlue"
              Margin="150">
        <Canvas.RenderTransform>
          <RotateTransform x:Name="theTransform" />
        </Canvas.RenderTransform>
        <TextBlock TextWrapping="Wrap" Foreground="White">
          Rotating Popup
        </TextBlock>
      </Canvas>
    </Popup>


  </StackPanel>
</Window>
WPF Rotating Popup








24.78.Popup
24.78.1.Create an animated Popup control.Create an animated Popup control.
24.78.2.Rotating PopupRotating Popup
24.78.3.Create Popup mock in XamlCreate Popup mock in Xaml
24.78.4.Close a Popup with Button clickClose a Popup with Button click
24.78.5.Use Popup to display a hyperlinkUse Popup to display a hyperlink
24.78.6.PopupAnimation = PopupAnimation.FadePopupAnimation = PopupAnimation.Fade
24.78.7.PopupAnimation = PopupAnimation.Scroll;PopupAnimation = PopupAnimation.Scroll;
24.78.8.PopupAnimation = PopupAnimation.Slide;PopupAnimation = PopupAnimation.Slide;