New to Telerik UI for WinFormsStart a free 30-day trial

Properties

Updated on Sep 24, 2025
PropertyDescription
BreadCrumbElementGets the breadCrumb element.
PinnedItemsPositionGets or sets the position of PinnedHeaderItems in the HeaderDropDownButtonElement. The available options are MenuItemsPosition.Top and MenuItemsPosition.Bottom
PinnedHeaderItemsGets the pinned menu items collection in the HeaderDropDownButtonElement. The pinned items are AssociatedMenuItems and allow the user to have shortcuts for faster and easier navigation to predefined paths.
IsAutoCompleteEnabledGets or sets a value indicating, whether the AutoComplete is enabled in EditMode. By default this property is True.
IsTextModeEnabledA property of type bool, which controls whether the text mode of the breadcrumb is enabled. By default this property is True.
IsHistoryEnabledA property of type bool, which specifies whether history of visited paths should be kept. By default this property is False.
PathSeparatorGets or sets the path separator symbol.
UseMnemonicGets or sets a value indicating whether the control interprets an ampersand character (&) in the control's Text property to be an access key prefix character - true if the label doesn't display the ampersand character and underlines the character after the ampersand in its displayed text and treats the underlined character as an access key; otherwise, false if the ampersand character is displayed in the text of the control. The default is true.
DefaultTreeViewGets or sets a TreeView associated to the bread crumb.
SelectTreeNodeOnClickDetermines whether a tree node will be selected upon clicking on the action part of the split button element. Default value is [true], if [false] click on the action part will result in opening the popup with the menu items.
DataMemberGets or sets the name of the list or table in the data source. Note that this property is ignored when DefaultTreeView is set.
DataSourceGets or sets the data source.Note that this property is ignored when DefaultTreeView is set.
DisplayMemberGets or sets the display member.Note that this property is ignored when DefaultTreeView is set.
ValueMemberGets or sets the value member. Note that this property is ignored when DefaultTreeView is set.
ChildMemberGets or sets the child member. Note that this property is ignored when DefaultTreeView is set.
ParentMemberGets or sets the parent member. Note that this property is ignored when DefaultTreeView is set.
RelationBindingsContains data binding settings for related data. Note that this property is ignored when DefaultTreeView is set.
NodesGets the collection of tree nodes that are assigned to the bread crumb control. A System.Windows.Forms.TreeNodeCollection that represents the tree nodes assigned to the tree view control.
ShowHiddenNodesGets or sets a value indicating whether to display a hidden tree node. A hidden node is a node which Visible property is set to false. Default value is false.
PathGet or sets the path to a RadTreeNode and selects it. Different elements in the node hierarchy must be separated by the PathSeparator.

RadBreadCrumbElement's Properties

PropertyDescription
ItemsGets the collection of RadSplitButtonElements, which represents the path to the selected RadTreeNode.
MainStackReturns the StackLayoutPanel that holds all Items.
LeftElementsStackReturns the panel that contain the elements on the left.
RightElementsStackReturns the panel that contain the elements on the right.
ImageElementReturns the LightVisualElement that is used to display the image of selected node.
HeaderDropDownButtonElementReturns the button that contains all collapsed and default items.
HistoryDropDownButtonElementReturns the history button.
TextBoxEditorElementReturns the RadTextBoxElement.
DefaultHeightGets or sets the height of the breadcrumb element.
SpacingBetweenItemsGets or sets the spacing between the items in the breadcrumb.
SelectTreeNodeOnClickDetermines whether a tree node will be selected upon clicking on the action part of the split button element. Default value is [true], if [false] click on the action part will result in opening the pop up with the menu items.
DefaultTreeViewElementAssociates a RadTreeViewElement to the bread crumb.
InternalTreeViewElementGets the internal TreeViewElement used in the bread crumb. Note that when DefaultTreeViewElement property is set, this property will be ignored.

RadBreadCrumbElement's Methods

MethodDescription
GetNodesCountReturns the number of nodes.
BeginEditEnters edit mode and displays the RadTextBoxEditorElement.
EndEditEnds the editor operation. The boolean parameter controls whether to parse the entered path or not.
GetNodePathReturns the path to the specified RadTreeNode.
ParseNavigates to a RadTreeNode and selects it by given text(path). Different elements in the node hierarchy must be separated by the PathSeparator.
ParseCoreRetrieves a node by given path. The out parameter returns true if the whole path is valid and false if only part of the path(sequence of text elements separated by the PathSeparator) is valid or none element is valid.

Events

EventDescription
RootNodesRequestedOccurs when the root nodes of the associated or internal tree view are requested during the Parse operation. In this event handler the user can modify the default root nodes(add, remove, replace).
HistoryItemCreatedOccurs when the user navigates to a new Path. In this event handler the user can modify the AssociatedMenuItem or set Cancel=true to prevent the item from being added to the history.
CollapsedItemsCreatedOccurs when there is not enough space to fit all items and all collapsed items have their corresponding menu items created. In this event handler the user can add, remove, reorder the items in that will appear as collapsed.
CollapsedItemCreatedOccurs when there is not enough space to fit all items. For each collapsed item anAssociatedMenuItem is created and this event is raised. In this event handler the user can replace the AssociatedMenuItem with a custom one, modify some of the properties of the existing one or set Cancel=true to prevent the item from being added to the collapsed items.
SplitButtonCreatedOccurs when the Path is changed. For each node in the path hierarchy a SplitButtonElement is created. In this event handler the users can set button properties, modify one or more items of the SplitButton.Items collection or modify the collection(add, remove, replace items).
SplitButtonCreatingOccurs when a RadSplitButtonElement is being created.In this event handler the users can replace the button with a custom one or cancel creating RadSplitButtonElement for the associated RadTreeNode.
AutoCompleteItemsCreatedOccurs when auto complete items are created. In this event handler the user can modify the auto complete items and/or modify the collection(add, remove, move or replace items).
AutoCompleteItemsCreatingIn this event handler the user can change the text used by the internal logic to generate the autocomplete items. Suitable for cases when you have shortcuts.
PathParsedOccurs when a path has been evaluated and a RadTreeNode is about to be selected in the BreadCrumb. In this event handler the user can change selected RadTreeNode. Note that if parsed path is not valid selected node will be null.
PathParsingOccurs when a path is about to be parsed. In this event handler the user can modify the path(for example if key/shortcut words are used), or cancel the parse operation.

See Also