Skip to main content

DevExpress v24.1 Update — Your Feedback Matters

Our What's New in v24.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.1.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