Popup::PopupAnimation Property
.NET Framework (current version)
Gets or sets an animation for the opening and closing of a Popup control.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: [BindableAttribute(true)] property PopupAnimation PopupAnimation { PopupAnimation get(); void set(PopupAnimation value); }
Property Value
Type: System.Windows.Controls.Primitives::PopupAnimationThe PopupAnimation enumeration value that defines an animation to open and close a Popup control. The default is None.
A Popup can only animate when the AllowsTransparency property is set to true. This requires the application that creates the Popup control to run with full trust.
If the PlacementTarget is animated, the Popup will not be animated.
Identifier field | |
Metadata properties set to true | None |
The following example shows how to set the PopupAnimation property.
<DockPanel Width="500" Background="Aqua"> <Popup Placement="Center" PlacementRectangle="0,0,30,50" IsOpen ="True" AllowsTransparency="True" PopupAnimation="Fade"> <TextBlock Background="Purple">Popup Text</TextBlock> </Popup> </DockPanel>
.NET Framework
Available since 3.0
Available since 3.0
Show: