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.TileImage Property

Gets or sets the glyph displayed in the tile corresponding to the current TileNavElement object.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[Browsable(false)]
[DefaultValue(null)]
[DXCategory("Tile properties")]
public Image TileImage { get; set; }

#Property Value

Type Default Description
Image null

The image displayed in a tile.

#Remarks

When the TileNavElement is rendered as a tile in a dropdown tile bar, the TileImage property specifies the image displayed in this tile. When the TileNavElement is rendered as a button within the nav bar, the button’s image is specified by the NavElement.Glyph property.

The TileImage property is in sync with the TileItem.Image property, accessible via the TileNavElement.Tile object. A tile can also display additional text blocks and images. These can be added via the TileItem.Elements collection. See the Tile Item Structure topic, for more details on how to manage TileItem‘s elements.

The following image shows a TileNavPane where tiles and buttons display sample images.

TileNavPane_GroupName

See Also