July 2017
Beginner
466 pages
9h 37m
English
Inside a panel, when you want to position each of its child elements next to the other, either horizontally (default) or vertically, until there is no more room and then wrap to the next line to continue, you need to use WrapPanel. It just looks like a combination of GridPanel and StackPanel, having variable cell size. Use it when you want a vertical or horizontal list automatically wrapped to next line if there's no more room for the controls to accommodate in the same line.
Let's see the following diagram as an example of WrapPanel:

Here you can see that the child elements positioned themselves ...
Read now
Unlock full access