Skip to main content

TileBarItem.FlyoutContent Property

Gets or sets the content for the flyout invoked with the current item. This is a dependency property.

Namespace: DevExpress.Xpf.Navigation

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

NuGet Package: DevExpress.Wpf.Controls

Declaration

public object FlyoutContent { get; set; }

Property Value

Type Description
Object

An Object that represents the content for the flyout.

Remarks

The TileBarItem can be associated with a dropdown control via the FlyoutContent property. In this case, the tile displays a dropdown button used to invoke the dropdown control. You can assign any control to the FlyoutContent property, including another TileBar control. In this case, when you click an item’s dropdown button, another TileBar is displayed in the dropdown window.

You can also use the TileBarItem.FlyoutContentTemplate and TileBarItem.FlyoutContentTemplateSelector properties for templating flyout content.

See Also