Controls
The standard layout containers for WPF
| Canvas | Position by coordinate, no reformat on resize |
| DockPanel | Specialized to provide docking points at the edge of the area for toolbars etc. |
| Grid | Grid layout that allows controls to specify a Grid.Column and Grid.Row for positioning. |
| StackPanel | Orders the controls either top to bottom or left to right. |
| UniformGrid | Generates columns and rows to match data |
| WrapPanel | Arranges controls left to right to fit a fixed size, then wraps the next control onto the next row. |