I am trying to format the header of the RadGreidView
I
<telerik:RadGridView Margin="10"
x:Name="safeDataGridView"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
ItemsSource="{Binding QueryTable}"
ScrollViewer.VerticalScrollBarVisibility="Visible"
ScrollViewer.HorizontalScrollBarVisibility="Visible"
RowLoaded="safeDataGridView_RowLoaded"
Loaded="safeDataGridView_Loaded" >
<telerik:RadGridView.HeaderRowStyle>
<Style TargetType="telerik:HeaderRowStyle">
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0.0" Color="#373638" />
<GradientStop Offset="1.0" Color="#77797B" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
</Style>
</telerik:RadGridView.HeaderRowStyle>
</telerik:RadGridView>
I am fcoming unstuck with the line <Style TargetType="telerik:HeaderRowStyle">. Am I going in the right direction with this and if not could I have a similar simple example of how it is done correctly please.