is it possible to have a whole column highlited when a user clicks on the label for that column?
<Setter Property="BackgroundFieldSelected">
<Setter.Value>
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0" Color="#FFDDDDDD"/>
<GradientStop Offset="1.1" Color="#00FFFFFF"/>
</LinearGradientBrush>
</Setter.Value>
</Setter>
<Setter Property="ForegroundStyle">
<Style> <Setter Property="TextBlock.Foreground" Value="#FF000000" /> </Style>
<Style>
<Setter Property="TextBlock.Foreground" Value="#FF000000" />
</Style>
thanks, that did the trick. How would i go about to change the style used to highlight the column?