Skip to main content

TileBarItem Class

An item, rendered as a tile in the TileBar control.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public class TileBarItem :
    TileItem,
    ITileBarDropDownOptionsOwner

The following members return TileBarItem objects:

Remarks

Tiles in the TileBar control are combined into groups (TileBarGroup). Organizing items into groups allows you to provide captions (TileGroup.Text) to sets of items and to detach the item sets from each other. Use the TileControl.Groups property to add groups to the control, and use the TileGroup.Items property to add items to groups.

Each TileBarItem can be associated with a dropdown control using the TileBarItem.DropDownControl property. In this case, the tile displays a dropdown button that allows an end-user to invoke the dropdown control at runtime. Settings that regulate the view and behavior of the dropdown control can be accessed using the TileBar.DropDownOptions object.

You can display images and text in tiles. This functionality is inherited by TileBarItem objects from the TileItem base class. Refer to the Tile Item Structure for more information.

See Also