Flyouts
最后更新于
最后更新于
Flyouts are light dismissible containers that show arbitrary UI content. Flyouts are not controls and can be declared as a resource and shared between multiple elements within your app.
FlyoutBase
is the base class for all flyout implementations.
Property | Description |
---|---|
Property | Description |
---|---|
There are two built-in types of Flyouts: Flyout
and MenuFlyout
. A regular Flyout
has no special logic and is just a simple container for any arbitrary UI content.
MenuFlyout
, as the name implies, creates a Menu.
In order to be shown Flyouts have to be attached to a specific control, though this is not a static assignment and can be changed at runtime. Button
has a Flyout
property that can be used to open a Flyout upon click.
For other controls that don't have built-in support for flyouts, one can be assigned using attached flyouts
Attached Flyouts can be shown by calling the ShowAttachedFlyout
method
Controls can also utilize Context Flyouts, which is an alternative/replacement to ContextMenu
s that provides a sharable, richer UI experience than simple context menus. NOTE: A control cannot have both a ContextFlyout
and ContextMenu
at the same time.
ContextFlyouts are invoked automatically like normal ContextMenu
s. Although custom behaviors and logic an be implemented by invoking it manually (like any other flyout: ContextFlyout.ShowAt(Control)
) or responding to the ContextRequested
event
As previously mentioned, Flyouts can be shared between various elements within your app.
Although Flyout
s are not controls themselves, their general appearance can still be customized by targeting the presenter the Flyout
uses to display its content. For a normal Flyout
this is FlyoutPresenter
and for MenuFlyout
this is MenuFlyoutPresenter
. Because flyout presenters are not exposed, special style classes that should pertain to specific flyouts can be passed using the FlyoutPresenterClasses
property on FlyoutBase
To create a custom flyout type, derive from FlyoutBase. You'll have to override the abstract method CreatePresenter()
to specify the presenter the Flyout
should use to display its content. This can be any type of control, but note that this is the root content for the inner popup and should be styled with background, border, corner radius, etc. to match other popups. You can still use a normal FlyoutPresenter
if you wish
The following example creates a simple Flyout
that hosts an image
IsOpen
Gets whether the Flyout is currently open.
Placement
Gets or sets where the Flyout opens relative to its target
ShowMode
Gets or sets the desired show mode of the Flyout, which determines if it is a transient (no focus) UI or not
Target
Gets the target the Flyout is currently assigned to
ShowAt(Control)
Shows the Flyout at the specified target
ShowAt(Control, bool)
Shows the Flyout at the specified target, but places it at the current pointer position
Hide
Hides the Flyout