remove the hightlight from the Telerik RadTreeView on mouse over of it

553 views Asked by At

How to remove the highlight from the Telerik RadTreeView in wpf on mouseover of the RadTreeView. I have used the grid to embed the RadTreeView.(Blue colored highlight should be removed) enter image description here

1

There are 1 answers

1
DNKROZ On

Try editing the style of the RadTreeViewItem

<Style TargetType="RadTreeViewItem">
  <Style.Resources>
      <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="#FFF"/>
      <SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}" Color="#000"/>
 </Style.Resources>