This is a library with UWP ListViewBase extensions.
- Alternate row color (AlternateRowColor)
- Alternate row itemtemplate (AlternateRowTemplate)
Just include a namespace on your page like
xmlns:extensions="using:EvD.ListViewExtensions"
And then extend your ListView with the alternate row color attached property
<ListView extensions:AlternateRowColor.Color="LightGray"></ListView>
Or extend it with a custom alternate itemtemplate attached property
<ListView extensions:AlternateRowTemplate.ItemTemplate="{StaticResource AlternateTemplate}"></ListView>
Or combine both. Super simple.
Download also available on nuget.