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

TileNavElement.Tile Property

Provides access to the tile used to render the current TileNavElement in the TileNavPane‘s drop-down tile bars.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

[DXCategory("Tile properties")]
public TileBarItem Tile { get; }

Property Value

Type Description
TileBarItem

The TileBarItem object used to render the current TileNavElement in the TileNavPane‘s drop-down tile bars.

Remarks

When a TileNavElement is displayed in a dropdown tile bar, it is rendered as a tile. Use the Tile property to access and customize this tile.

To specify text and image for the tile, use the TileNavElement.TileText and TileNavElement.TileImage properties.

You can customize the tile’s appearance with the TileItem.AppearanceItem property, accessible via the Tile property. The appearance settings common to all tiles can be customized with the TileNavPaneDropDownOptions.AppearanceItem property, which can be accessed via the TileNavPane.OptionsPrimaryDropDown and TileNavPane.OptionsSecondaryDropDown objects.

To customize the appearance of an element’s children displayed as tiles in a dropdown tile bar, use the TileNavPaneDropDownOptions.AppearanceItem property, available via the TileNavElement.OptionsDropDown property.

See Also