I'm using UniformGrid
and it's making the items display horizontally. Is there a way to make it display vertically?
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Columns="3" />
</ItemsPanelTemplate>
</ListView.ItemsPanel>
Any help would be greatly appreciated.
<UniformGrid Rows="3" />
. – Dip