Layout

The layout system is built upon the scene graph, or UI tree, which means that the visual components are arranged in a tree formation.

Currently there are only two controls that can have children:
  • Stack Layout
  • Grid Layout
These have no visual appearance of their own, but are instead used only to layout (or arrange) their children in a specific formation specified by the user.

The Stack Layout places its children in a stack formation (meaning one after the other).

The Grid Layout places them in a grid formation.