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

BreadcrumbControl.ImageMember Property

Gets or sets the name of the member in bound data objects that contains node image. This is a dependency property.

Namespace: DevExpress.Xpf.Controls

Assembly: DevExpress.Xpf.Controls.v24.2.dll

NuGet Package: DevExpress.Wpf.Controls

#Declaration

public string ImageMember { get; set; }

#Property Value

Type Description
String

A String value that specifies the member name.

#Remarks

Breadcrumb nodes can display images if the ShowItemImages property is set to true. Images are obtained from the data source field with long binary data. Its name should be specified using the ImageMember property.

breadcrumb_showitemimages

The Breadcrumb control displays the selected node’s image when the ShowSelectedItemImage property is set to true.

To display an image within an individual node, use its BreadcrumbNode.Image property. The image specified by the BreadcrumbNode.Image property overrides the image obtained from a data source (if the ImageMember property is specified).

See Also