Layout system

    The Xenko UI layout system is similar to Windows Presentation Foundation (WPF). For more information about the WPF layout system, see the . Much of the WPF documentation also applies to the Xenko layout system.

    Processing this data recursively, the layout system computes a position and size for every UIElement in the UI system.

    In the pass, each element recursively computes its DesiredSize according to the properties you set, such as , Height, and .

    Arrange

    The Arrange pass arranges the elements, taking into account:

    See also