Hello, how can I create a GridView with 2 columns and 3 or N rows?
In the ItemsPanel I only find the MaximumRowsOrColumns property, so I can only make 2x2, 3x3, NxN GridViews... :(
I expected to find something like this:
<ItemsPanelTemplate x:Key="ShowcaseGridRowPanel">
<ItemsWrapGrid Orientation="Vertical" MaximumRows="3" MaximumColumns="2" />
</ItemsPanelTemplate>
How can I do?