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

BreadcrumbControl.ParentMember Property

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

Namespace: DevExpress.Xpf.Controls

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Controls, DevExpress.Wpf.Navigation

Declaration

public string ParentMember { get; set; }

Property Value

Type Description
String

A String specifies the name of the data source field that contains parent values.

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