How to turn off wrapping in a grid in UWP XAML? -
i need template wrapping of grid items should turned off , list them vertically (as listview control would) , stretch items whole width of page. how turn off wrapping of grid without fixing width of items.
thanks, soorya
if don't want wrapping, don't use wrapgrid anymore. change itemspanel in gridview <stackpanel orientation="horizontal" />
. best of luck!
Comments
Post a Comment