Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 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.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.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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