Skip to main content

TileNavElement Class

Represents a base class for elements of the TileNavPane‘s navigation hierarchy that are represented as tiles in drop-down tile bars.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public class TileNavElement :
    NavElement,
    ITileBarWindowOwner,
    ITileNavPaneDropDownOptionsOwner,
    ISupportCommandBinding

Remarks

The TileNavElement is the base class for navigation elements that are represented as tiles in drop-down tile bars. The following TileNavElement descendants are available:

The TileNavElement.Tile property provides access to the TileBarItem object that is used to render the TileNavElement as a tile in a tile bar. Use the TileNavElement.TileText and TileNavElement.TileImage properties to specify the text and image displayed in the tile.

To handle clicks on the current tile, handle the TileNavElement.TileClick or TileNavPane.TileClick event.

If a TileNavElement has child elements, the tile displays a dropdown button, which can be clicked to display a tile bar displaying the child elements as tiles. The TileNavElement.OptionsDropDown property provides access to the set of options applied to the drop-down tile bar.

See Also