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

Add additional element inside RadTabbedWindow's header

Updated on Sep 15, 2025

Environment

Product Version2019.3.1023
ProductRadTabbedWindow for WPF

Description

How to add additional element inside RadTabbedWindow's header.

Solution

To achieve this requirement, you can subscribe to the Loaded event of RadTabbedWindow. Inside the event handler, you can get the StackPanel that holds the header buttons. Then, you can insert new buttons on the panel.

Example 1: Subscribe to the ContextMenuOpening event C# private void RadTabbedWindow_Loaded(object sender, RoutedEventArgs e) { var stackWithButtons = this.ChildrenOfType<StackPanel>().FirstOrDefault( x=> x.Name == "HeaderButtons"); if (stackWithButtons != null) { stackWithButtons.Children.Insert(0, new RadButton() { Content = "My Custom Button" }); } }

In this article
EnvironmentDescriptionSolution
Not finding the help you need?
Contact Support