Hi,
My WPF GridView use background color for give some information to user:
- Green, row completed
- Orange, row to be process
- Yellow, row work in progress (WIP)
Actual color selection in grid is yellow. How I can change color selection?
Actualy, I use this RowStyle for change background color.
<controls:RadGridView.RowStyle>
<Style TargetType="gridView:GridViewRow">
<Setter Property="Background" Value="{Binding Color}"></Setter>
</Style>
</controls:RadGridView.RowStyle>
I try with Style.Trigger for IsMouseOver and IsSelected, but the rectangle of selection is always yellow.
I read in your forum that it’s possible override default style.
Can you send me an example in C#?