Create a WPF Window from scratch.
Option | Description |
---|---|
Canvas | Defines an area within which you can explicitly position child elements by specifying coordinates relative to the canvas area. |
Dock Panel | Defines an area within which you can arrange child elements either horizontally or vertically, relative to each other. |
Grid | Defines a flexible grid area consisting of columns and rows. Use the Margin property to precisely position child elements in a grid. |
Stack Panel | Arranges child elements into a single line that can be oriented horizontally or vertically. |
Wrap Panel | Places child elements in sequential position from left to right, breaking content to the next line at the edge of the containing box. |