Using XAML Popup In WPF

XAML Popup in WPF


A XAML Popup represents a popup window. A popup window is a window that floats over a page or window providing functionality for some quick action, for example a login control on a page or to provide an animated popup tip. Fortunately, WPF comes with a Popup control to provide this functionality.

This tutorial shows you how to use a Popup in WPF using XAML and C#.

Introduction to XAML Popup 


The Popup element represents a WPF Popup control in XAML. 
  1. <Popup></Popup>  
The Width and Height properties represent the width and the height of a Popup. The Name property represents the name of the control, which is a unique identifier of a control. The Margin property tells the location of a Popup on the parent control. The HorizontalAlignment and VerticalAlignment properties are used to set horizontal and vertical alignments.

The following code snippet sets the name, height and width of a Popup control. The code also sets the horizontal alignment to left and the vertical alignment to top.
  1. <Popup Margin="10,10,0,13" Name="Popup1" HorizontalAlignment="Left"   
  2. VerticalAlignment="Top" Width="194" Height="200" />  
To make a popup control visible, you need to set the IsOpen property to true.
  1. IsOpen="True"  
Formatting Popup Contents

A Popup control can have only one child. The following code snippet adds a text block to the popup control.
  1. <Popup Margin="10,10,0,13" Name="Popup1" HorizontalAlignment="Left"   
  2.  VerticalAlignment="Top" Width="194" Height="200" IsOpen="True">  
  3.        <TextBlock Name="McTextBlock"   
  4.              Background="LightBlue" >  
  5.         This is popup text   
  6.        </TextBlock>  
  7. </Popup>  
If you wish to add more content to the popup control, you may have a stack panel or grid as a child control and place more content on the panel or grid controls. The following code snippet creates a stack panel and places some content on it.
  1. <Popup Margin="10,10,0,13" Name="Popup1" HorizontalAlignment="Left"   
  2.  VerticalAlignment="Top" Width="194" Height="200" IsOpen="True">  
  3.         <StackPanel>  
  4.             <TextBlock Name="McTextBlock"   
  5.              Background="LightBlue" >  
  6.             This is popup text   
  7.            </TextBlock>  
  8.             <Button Content="This is button on a Pupup" />  
  9.         </StackPanel>  
  10. </Popup>  
The popup created using the preceding code looks as in Figure 1.
XAML Popup in WPF
Figure 1. Popup window

Animated WPF Popup


Once you have a popup content defined, you can do anything with this content depending on the controls. For instance, if you are using an image as content, you can do anything with the popup that you can do with the image.

The following code shows how to animate a popup window.
  1. <StackPanel>  
  2.     <CheckBox Name="PCheckBox" Margin="10,10,0,0"  
  3.           Content="Popup Window"/>  
  4.     <Button HorizontalAlignment="Left" Width="129" Margin="10,10,0,0">  
  5.         <Button.Triggers>  
  6.             <EventTrigger RoutedEvent="Button.Click">  
  7.                 <BeginStoryboard>  
  8.                     <Storyboard>  
  9.                         <DoubleAnimation   
  10.             Storyboard.TargetName="theTransform"  
  11.             Storyboard.TargetProperty="(RotateTransform.Angle)"   
  12.             From="0" To="360" Duration="0:0:5" AutoReverse="True"/>  
  13.                     </Storyboard>  
  14.                 </BeginStoryboard>  
  15.             </EventTrigger>  
  16.         </Button.Triggers>  
  17.         Start Animation  
  18.     </Button>  
  19.     <Popup IsOpen="{Binding ElementName=PCheckBox,Path=IsChecked}"   
  20.        PlacementTarget="{Binding ElementName=PCheckBox}"              
  21.        AllowsTransparency="True"  
  22.        PopupAnimation="Slide"  
  23.        HorizontalOffset="150"  
  24.        VerticalOffset="100">  
  25.         <Canvas Width="100" Height="100" Background="Green" Margin="150">  
  26.             <Canvas.RenderTransform>  
  27.                 <RotateTransform x:Name="theTransform" />  
  28.             </Canvas.RenderTransform>  
  29.             <TextBlock TextWrapping="Wrap" Foreground="LightGray">  
  30.       Rotating Popup  
  31.     </TextBlock>  
  32.         </Canvas>  
  33.     </Popup>  
  34. </StackPanel>  

Placement of WPF Popup


The Placement property of Popup describes the placement of where a Popup control appears on the screen. If you do not set any positioning or placement of a popup, the popup will appear in the left top corner of the window.

The PlacementMode enumeration represents the Placement property. The following code snippet sets the Placement property to AbsolutePoint.
  1. <Popup Name="Popup1" HorizontalAlignment="Left"   
  2.  VerticalAlignment="Top" Width="200" Height="50"   
  3.  IsOpen="True" Placement="AbsolutePoint" >                 
  4.             <TextBlock Name="McTextBlock"   
  5.              Background="LightBlue" >  
  6.                 This is popup text   
  7.            </TextBlock>                     
  8. </Popup>       
The following illustrations and definitions from the MSDN show how the PlacementMode enumeration values help you place the Popup window and adjust its position when screen boundaries obscure its content.

PlacementMode = Absolute

A Popup control is positioned relative to the upper-left corner of the screen and offset by the HorizontalOffset and VerticalOffset properties.

XAML Popup in WPF

If a screen edge hides all or part of the Popup, the control realigns with the obscuring edge.

XAML Popup in WPF

PlacementMode = AbsolutePoint

A Popup control is positioned relative to the upper-left corner of the screen and offset by the HorizontalOffset and VerticalOffset properties.
XAML Popup in WPF

If a screen edge hides all or part of the Popup, the control opens in the opposite direction by starting at the point that is defined by the offset properties.

XAML Popup in WPF

XAML Popup in WPF

PlacementMode = Bottom

A Popup control is positioned where the control aligns its upper edge with the lower edge of the PlacementTarget and aligns its left edge with the left edge of the PlacementTarget.

XAML Popup in WPF

If the lower edge of the screen hides all or part of the Popup, the control realigns with the upper edge of the PlacementTarget. If the upper edge of the screen hides all or part of this new position, the control realigns with the lower edge of the screen. After these adjustments, if the control is still partially hidden by the upper edge of the screen, the control realigns with the upper edge of the screen.

XAML Popup in WPF

If a vertical screen edge hides all or part of the Popup, the control realigns with the obscuring screen edge.

XAML Popup in WPF

PlacementMode = Center

A position of the Popup control where the control centers itself over the PlacementTarget.

XAML Popup in WPF

If a screen edge hides all or part of the Popup, the control realigns with the obscuring screen edge.

XAML Popup in WPF

XAML Popup in WPF

PlacementMode = Left


A Popup control that aligns its right edge with the left edge of the PlacementTarget and its upper edge with the upper edge of the PlacementTarget.

XAML Popup in WPF

If a horizontal screen edge hides all or part of the Popup, the control realigns with the obscuring screen edge.

XAML Popup in WPF

If a vertical screen edge hides all or part of the Popup, the control realigns on the opposite side of the PlacementTarget.

XAML Popup in WPF

PlacementMode = Mouse

A Popup control is positioned where it aligns its upper edge with the lower edge of the bounding box of the mouse and it aligns its left edge with the left edge of the mouse bounding box.

XAML Popup in WPF

If a horizontal screen edge hides all or part of the Popup, the control displays on the opposite side of the mouse bounding box.

XAML Popup in WPF

If a vertical screen edge hides all or part of the Popup, the control realigns with the obscuring screen edge.

XAML Popup in WPF

PlacementMode = MousePoint


A position of the Popup control that aligns its upper edge with the lower edge of the mouse bounding box and its left edge with the left edge of the mouse bounding box.

XAML Popup in WPF

If a screen edge hides all or part of the Popup, the control realigns on the opposite side of the mouse bounding box.

XAML Popup in WPF

XAML Popup in WPF

PlacementMode = Relative


A position of the Popup control that is relative to the upper-left corner of the PlacementTarget and at an offset that is defined by the HorizontalOffset and VerticalOffset property values.

XAML Popup in WPF

If a screen edge hides all or part of the Popup, the control realigns with the obscuring screen edge.

XAML Popup in WPF

XAML Popup in WPF

Placement Mode = RelativePoint


A position of the Popup control that is relative to the upper-left corner of the PlacementTarget and at an offset that is defined by the HorizontalOffset and VerticalOffset property values.

XAML Popup in WPF

If a screen edge hides all or part of the Popup, the control opens in the opposite direction by starting at the point that is defined by the offset properties.

XAML Popup in WPF

XAML Popup in WPF

PlacementMode = Right


A position of the Popup control that aligns its left edge with the right edge of the PlacementTarget and aligns its upper edge with the upper edge of the PlacementTarget.

XAML Popup in WPF

If a vertical screen edge hides all or part of the Popup, the control displays on the opposite side of the PlacementTarget.

XAML Popup in WPF

If the upper or lower screen edge hides all or part of the Popup, the control realigns with the obscuring screen edge.

XAML Popup in WPF

Placement Mode = Top

A position of the Popup control that aligns its lower edge with the upper edge of the PlacementTarget and aligns its left edge with the left edge of the PlacementTarget.

XAML Popup in WPF

If the upper edge of the screen hides all or part of the Popup, the control displays below the PlacementTarget. If the lower edge of the screen hides the Popup in the new position, the control realigns with the lower edge of the screen. If the control is still obscured by the upper screen edge in the third position, the control realigns with the upper screen edge.

XAML Popup in WPF

If a vertical screen edge hides all or part of the Popup, the control realigns with the obscuring screen edge.

XAML Popup in WPF

Summary


In this article, I discussed how to use a Popup control available in WPF. The article also shows how to animate a popup. 


Recommended Free Ebook
Similar Articles
Mindcracker
Founded in 2003, Mindcracker is the authority in custom software development and innovation. We put best practices into action. We deliver solutions based on consumer and industry analysis.