PopupAnimation Enum

Definition

Describes how a Popup control animates when it opens.

public enum class PopupAnimation
public enum PopupAnimation
type PopupAnimation = 
Public Enum PopupAnimation
Inheritance
PopupAnimation

Fields

Fade 1

The Popup control gradually appears, or fades in. This effect is created by increasing the opacity of the Popup window over time.

None 0

The Popup control appears without animation.

Scroll 3

The Popup control scrolls from the upper-left corner of its parent. If the screen does not provide enough room to allow the Popup default behavior, the Popup scrolls from the lower-right corner instead.

Slide 2

The Popup control slides down or up into place. By default, a Popup slides down. However, if the screen does not provide enough room for the Popup to slide down, it slides up instead.

Remarks

To specify a type of animation for a Popup control, set the PopupAnimation property to one of the enumeration values.

Applies to

See also