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

Gets or sets the name of the service field in a data source that contains unique values. This is a dependency property.

Namespace: DevExpress.Xpf.Controls

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

NuGet Package: DevExpress.Wpf.Controls

#Declaration

public string KeyMember { get; set; }

#Property Value

Type Description
String

A String value that specifies the name of the data source key field.

#Remarks

To display hierarchical data, a data source should contain two additional fields. The first field must contain unique values. Its name is specified by the KeyMember property. The second field must contain values that indicate parent nodes for the current node. Its name is specified by the ParentMember property.

Note

The data types of the data source fields specified by the KeyMember and ParentMember properties, must be the same. These values (key and parent) cannot be equal for a node.

See Also