I'm already modifying the look of the GridViewHeaderCell using a Style resource in my WPF desktop application. I would now like to move the sorting arrow from its default position at the top of the header cell to the right of the header cell. Can this be done by setting a property or two? I'd prefer to stay away from Expression Blend. Thanks.
<Style TargetType="{x:Type telerik:GridViewHeaderCell}">
<Setter Property="Foreground" Value="White" />
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush EndPoint="0.5,0.971" StartPoint="0.5,0.042">
<GradientStop Color="#26FFFFFF" Offset="0" />
<GradientStop Color="#00FFFFFF" Offset="1" />
<GradientStop Color="#26FFFFFF" Offset="0.467" />
<GradientStop Color="#00FFFFFF" Offset="0.475" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
<Setter Property="Width" Value="Auto" />
<!-- Any setter properties I can put here to move the sorting arrow? -->
</Style>
<Style TargetType="{x:Type telerik:GridViewHeaderCell}">
<Setter Property="Foreground" Value="White" />
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush EndPoint="0.5,0.971" StartPoint="0.5,0.042">
<GradientStop Color="#26FFFFFF" Offset="0" />
<GradientStop Color="#00FFFFFF" Offset="1" />
<GradientStop Color="#26FFFFFF" Offset="0.467" />
<GradientStop Color="#00FFFFFF" Offset="0.475" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
<Setter Property="Width" Value="Auto" />
<!-- Any setter properties I can put here to move the sorting arrow? -->
</Style>