I have a List of string. e.g. "abc", "pqr", "xyz" in this order. A StackPanel is data bound to this list. I want to display the list in a StackPanel vertically but in reverse order from top to bottom
"xyz"
"pqr"
"abc"
Is there a way to do this in xaml or do I have to reorder my list?