InterviewSolution
| 1. |
What Is Variablesizedwrapgrid In Uwp? |
|
Answer» In a VariableSizedWrapGrid, ELEMENTS are arranged in rows or columns that automatically wrap to a new row or column when the MaximumRowsOrColumns value is reached. The ORIENTATION property specifies whether the grid adds its items in rows or columns before wrapping. If Orientation value is vertical: Item 1 Item 4 Item 7 Item 2 Item 5 Item 8 Item 3 Item 6 Item 9 If Orientation value is HORIZONTAL: Item 1 Item 2 Item 3 Item 4 Item 5 Item 6 Item 7 Item 8 Item 9 In a VariableSizedWrapGrid, elements are arranged in rows or columns that automatically wrap to a new row or column when the MaximumRowsOrColumns value is reached. The Orientation property specifies whether the grid adds its items in rows or columns before wrapping. If Orientation value is vertical: Item 1 Item 4 Item 7 Item 2 Item 5 Item 8 Item 3 Item 6 Item 9 If Orientation value is Horizontal: Item 1 Item 2 Item 3 Item 4 Item 5 Item 6 Item 7 Item 8 Item 9 |
|