New to Telerik UI for WPF? Start a free 30-day trial
Enable and Disable Tabs
Updated on Sep 24, 2025
If you want to enable or disable specific tab item(s) you have to use the Boolean property IsEnabled of the class RadTabItem. You can set it from your code-behind, XAML or in Blend.
XAML
<telerik:RadTabControl x:Name="radTabControl">
<telerik:RadTabItem Header="Calendar" IsEnabled="False"/>
</telerik:RadTabControl>
C#
RadTabItem newTabItem = new RadTabItem();
newTabItem.Header = "Disabled Item";
// Add the newly created tab item to
// an existing tab control “tabControl”
radTabControl.Items.Add( newTabItem );
// Disable the newly created tab item
newTabItem.IsEnabled = false;