Unplanned
Last Updated: 16 Oct 2018 07:02 by ADMIN
workaround:
for Material theme - add mat:MaterialAssist.FocusBrush = "{x:Null}" to the control instances you would like
for the rest of the themes: either set Focusable = "False" or retemplate and remove the focus in the StyleSelector of the RadToolbar
Unplanned
Last Updated: 12 May 2017 15:01 by ADMIN
RadTooBar holds a Button and it is shown in Contentframe. When shown the button is initially disabled. Clicking on other button makes the first button enabled.

Possible workaround is to set FocusManager.IsFocusScope to False on the Toolbar.
Unplanned
Last Updated: 10 Mar 2017 14:12 by ADMIN
This is reproducible also with the Green theme. 

As a workaround you can extract the RadToolBar ControlTemplate and modify the column/row definitions of the root Grid element. 
(http://docs.telerik.com/devtools/wpf/styling-and-appearance/styling-apperance-editing-control-templates)

This is for vertical orientation:

<Grid.ColumnDefinitions>
	<ColumnDefinition x:Name="c0" Width="Auto"/>

<ColumnDefinition x:Name="c1" Width="*"/>
<ColumnDefinition x:Name="c2" Width="Auto"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition x:Name="r0" Height="Auto"/>
<RowDefinition x:Name="r1" Height="*"/>
<RowDefinition x:Name="r2" Height="Auto"/>
</Grid.RowDefinitions>


This is for horizontal orientation:

<Grid.ColumnDefinitions>
<ColumnDefinition x:Name="c0" Width="Auto"/>
<ColumnDefinition x:Name="c1" Width="*"/>
<ColumnDefinition x:Name="c2" Width="Auto"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition x:Name="r0" Height="*"/>
<RowDefinition x:Name="r1" Height="Auto"/>
<RowDefinition x:Name="r2" Height="Auto"/>
</Grid.RowDefinitions>
Unplanned
Last Updated: 05 Jan 2017 11:42 by ADMIN
Buttons in the OverFlowButtons have CheckBoxes indicating whether the Buttons are added or removed from the Toolbar.
Unplanned
Last Updated: 05 Jan 2017 08:00 by ADMIN
ToolBar Band and BandIndex properties are not applied when the control is set in a DataTemplate of a ToolBarTray
Unplanned
Last Updated: 05 Jan 2017 08:00 by ADMIN
Allow CloseOnEscape feature for RadDropDownButtons and RadSplitButtons in the RadToolBar