New to Telerik UI for WPF? Start a free 30-day trial
Enable / Disable items state
Updated on Sep 24, 2025
You can control the IsEnabled state of the RadToolBar items thus modifying the overall look of the control:
RadToolBar with enabled items:

RadToolBar with disabled items:

You can disable an item placed inside the RadToolBar by changing its IsEnabled property:
XAML
<telerik:RadToolBar x:Name="toolbar">
<Button IsEnabled="False">
<Image Source="/Images/Open.png" />
</Button>
</telerik:RadToolBar>
If you want to disable all RadToolBar items in code behind, you can traverse the Items collection of the control and change the enable state of each item:
C#
foreach (object o in toolbar.Items)
{
Control control = o as Control;
if (control != null)
{
control.IsEnabled = false;
}
}The TextBlock control inherits the FrameworkElement, but not the Control, i.e. it has not the IsEnabled property. This is the reason that it can not be enabled and disabled.