Popup.PopupAnimation 属性

定义

获取或设置 Popup 控件的打开和关闭动画。

public:
 property System::Windows::Controls::Primitives::PopupAnimation PopupAnimation { System::Windows::Controls::Primitives::PopupAnimation get(); void set(System::Windows::Controls::Primitives::PopupAnimation value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.Controls.Primitives.PopupAnimation PopupAnimation { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.PopupAnimation : System.Windows.Controls.Primitives.PopupAnimation with get, set
Public Property PopupAnimation As PopupAnimation

属性值

PopupAnimation

PopupAnimation 枚举值,该值定义打开和关闭 Popup 控件的动画。 默认值为 None

属性

示例

下面的示例演示如何设置 PopupAnimation 属性。

myPopup.AllowsTransparency = true;
myPopup.AllowsTransparency = True
<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>
myTextBlockPopup.PopupAnimation = PopupAnimation.Fade;
myTextBlockPopup.PopupAnimation = PopupAnimation.Fade

注解

仅当属性设置为true时,AllowsTransparencyA Popup 才能进行动画处理。 这需要创建 Popup 控件以完全信任运行的应用程序。

如果已 PlacementTarget 创建动画, Popup 则不会对它进行动画处理。

依赖项属性信息

标识符字段 PopupAnimationProperty
元数据属性设置为 true

适用于

另请参阅