PopupAnimation Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes how a Popup control animates when it opens.
public enum class PopupAnimation
public enum PopupAnimation
type PopupAnimation =
Public Enum PopupAnimation
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | The Popup control appears without animation. |
Fade | 1 | The Popup control gradually appears, or fades in. This effect is created by increasing the opacity of the Popup window over time. |
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. |
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. |
Remarks
To specify a type of animation for a Popup control, set the PopupAnimation property to one of the enumeration values.