A XAML StackPanel
aligns controls side-by-side in a single direction. A WrapPanel
is similar but like TextWrapping="Wrap"
in a XAML TextBox
the controls "wrap" to the next column or row when the respective height or width is reached.
Similar, but not the same, WrapGrid
wraps content, but in a uniform grid. Though the VariableSizedWrapGrid
allows for dissimilar items in the container. Neither of the WrapGrids
can be used outside of an ItemsControl
. So, they are disqualified.
When developers look in their native XAML Toolbox in Visual Studio there is no WrapPanel
. WPF developers had a WrapPanel
so they might be looking for this common tool to solve their scenario. So, I have to ask:
Does anyone know of a WrapPanel in XAML-WinRT? (what about one that is virtualized?)
ArrangeOveride
. I had a failed attempt at it once, and haven't looked at it again. ArrangeOverride at MSDN: msdn.microsoft.com/en-us/library/windows/apps/… – Paraphernalia