Skip to main content

TileBar.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.v23.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 TileBar in the bounds of the application window. To specify the direction in which the flyout is opened, use the TileBar.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 TileBar, 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