Is there a way to indicate to the ListView that every other row is a different color?
var list = new ListView()
{
ItemTemplate = new DataTemplate(typeof(FinancialCell)),
.....?
}
I haven't seen an API for it.
In the above FinancialCell (ViewCell), perhaps do we need to do it manually?