Custom buttons for BreadCrumb

1 Answer 16 Views
BreadCrumb
Yoshinari
Top achievements
Rank 1
Yoshinari asked on 21 Oct 2025, 01:41 AM

Hello,

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

Sort by
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);

    For more details about RadBreadCrumb, you can refer to the documentation: https://docs.telerik.com/devtools/winforms/controls/breadcrumb/overview

    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
      Yoshinari
      Top achievements
      Rank 1
      commented on 22 Oct 2025, 04:14 AM

      Hi, Nadya,

      It worked out. Thanks!
      Tags
      BreadCrumb
      Asked by
      Yoshinari
      Top achievements
      Rank 1
      Answers by
      Nadya | Tech Support Engineer
      Telerik team
      Share this question
      or