Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TileNavPane.FlyoutShowMode Property

Gets or sets the mode that specifies how drop-down tile bars are displayed. This is a dependency property.

Namespace: DevExpress.Xpf.Navigation

Assembly: DevExpress.Xpf.Controls.v24.2.dll

NuGet Package: DevExpress.Wpf.Controls

#Declaration

public FlyoutShowMode FlyoutShowMode { get; set; }

#Property Value

Type Description
DevExpress.Xpf.Navigation.FlyoutShowMode

A DevExpress.Xpf.Navigation.FlyoutShowMode enumeration value, such as Adorner or Popup, that specifies how drop-down tile bars are displayed. The default is Adorner.

#Remarks

By default, when the FlyoutShowMode property is set to Adorner, the drop-down tile bars are displayed as flyouts that can only be opened upwards or downwards relative to the TileNavPane in the bounds of the application window. To specify the direction in which the flyout is opened, use the TileNavPane.FlyoutShowDirection property.

It is also possible to display the drop-down tile bars as popups that can be displayed in any direction relative to the TileNavPane, including leftwards and rightwards. The actual direction is automatically determined based on the application window position and the available screen space. For this purpose, set the FlyoutShowMode property to Popup.

See Also