uniformgrid

Best approach for WPF multi-column list view

I have a ListView with a lot of data (200+ items) so to save space it's making use of a UniformGrid to display 3 columns instead of 1 <ListView.ItemsPanel> <ItemsPanelTemplate> <UniformGrid Columns="3" /> </ItemsPanelTemplate> </ListView.ItemsPanel> I also modify the style so that each item is aligned to the top <List...

How to change orientation of UniformGrid control?

By default, UniformGrid displays it's children as follows: 1 2 3 4 5 6 7 8 9 I want to be as follows: 1 4 7 2 5 8 3 6 9 Any ideas? ...