How do i set alternate row colors for WPF Listview.
If i have only 1 list I can set in XAML, but in my case, the alternate row colors need to be changed based on the list.
For example,i have 3 diff lists...
1) order by Company name,
2) order by Sector
3) order by Market value
Each list should have their own alternate row colors.
How can i do that(in C# or in XAML file).Any Ideas/Suggestions would be aprreciated
|
| ||||
|
feedback
|
|
This should work no matter what you do to the list since ItemsControl.AlternationIndex is a dependency property and should get updated:
Code Behind to test changes to items:
| |||
feedback
|