Hi, I have a radtreeview in my application. The tree node data is being populated from code behind. Its styled based on Office2016 theme which is why it is showing a light gray color when a node is selected and then unfocused (please see attached pic). I want to change this light gray color to the dark blue color of the Office2016 theme but cant figure out how. Here is the Style that is applied:
<telerik:RadTreeView.ItemContainerStyle> <Style TargetType="{x:Type telerik:RadTreeViewItem}" BasedOn="{StaticResource RadTreeViewItemStyle}"> <Setter Property="VerticalContentAlignment" Value="Stretch"/> <Setter Property="HorizontalContentAlignment" Value="Stretch"/> <Setter Property="IsExpanded" Value="{Binding IsExpanded, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/> <Setter Property="IsEditable" Value="{Binding IsEditable, NotifyOnSourceUpdated=True}" /> <Setter Property="IsSelected" Value="{Binding DataContext.IsSelected, Mode=TwoWay, RelativeSource={RelativeSource Self}}" /> </Style> </telerik:RadTreeView.ItemContainerStyle>