I want to add a custom button to the right side of the BreadCrumb control.
The documentation says it's possible.
How can I do this?
Thanks.
1 Answer, 1 is accepted
0
Nadya | Tech Support Engineer
Telerik team
answered on 21 Oct 2025, 08:02 AM
Hello, Yoshinari,
You can add a custom button element to the right side of the RadBreadCrumb control by extending its element structure. You can achieve this by adding your custom button to the RightElementsStack.Children collection.
Here’s an example demonstrating how to add a RadButtonElement to the far right of the breadcrumb bar:
RadButtonElement customButton = new RadButtonElement();
customButton.Text = "My Button";
customButton.Click += (s, e) => {
MessageBox.Show("Custom button clicked!");
};
radBreadCrumb1.BreadCrumbElement.RightElementsStack.Children.Add(customButton);
Let me know if you need further assistance or want to customize the button’s appearance and behavior.
Regards,
Nadya | Tech Support Engineer
Progress Telerik
Your perspective matters! Join other professionals in the State of Designer-Developer Collaboration 2025: Workflows, Trends and AI survey to share how AI and new workflows are impacting collaboration, and be among the first to see the key findings. Start the 2025 Survey