Skip to main content
A newer version of this page is available. .

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.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Controls, DevExpress.Wpf.Navigation

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FlyoutContent property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also