windowsforms-devexpress-dot-xtraeditors-dot-breadcrumbnode.md
Gets the child nodes collection for this BreadCrumbNode.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[Browsable(false)]
public BreadCrumbNodeCollection ChildNodes { get; }
<Browsable(False)>
Public ReadOnly Property ChildNodes As BreadCrumbNodeCollection
| Type | Description |
|---|---|
| BreadCrumbNodeCollection |
A BreadCrumbNodeCollection that contains child BreadCrumbNode for this BreadCrumbNode.
|
A BreadCrumbNodeCollection, assigned to the ChildNodes property, provides zero-based indexed access to BreadCrumbNode that serve as child nodes for this BreadCrumbNode. You can populate this collection both at design-time and dynamically at runtime. To populate the ChildNodes collection at runtime, handle the RepositoryItemBreadCrumbEdit.QueryChildNodes event. See the Breadcrumb Edit Control topic to learn more.
See Also