New to Telerik UI for WPF? Download free 30-day trial

Layout Panel

The purpose of this article is to describe how the RadLayoutControl children are arranged in their panel.

The items panel of RadLayoutControl and the layout groups is a LayoutPanel. So, each group arranges its children in its available space using the same logic. This is why this article won't consider a scenario with nested groups but it will explain the arrangment only in a single panel with its Orientation set to Horizontal. The same principles apply in a vertically oriented panel.

This article is not relevant for the LayoutControlTabGroup. The tab items of the group are always arranged horizontally.

The following rules apply to the children of the LayoutPanel with a horizontal orientation:

  • All left aligned items will be stacked at the left side of the panel. The panel will give each item only as much size as it needs.

  • All right aligned items will be stacked at the right side of the panel. The panel will give each item only as much size as it needs.

    Figure 1: Left and right aligned items WPF RadLayoutControl Left and right aligned items

    Example 1 demonstrates the items setup demonstrated in Figure 1.

  • After positioning the left and right aligned elements the panel will divide the remaining space between the stretched items. The positions of the stretched items varies based on the left/right and the center aligned items, and also on the index of the item in the panel's children collection.

    Figure 2: Stretched items with different sizes WPF RadLayoutControl Stretched items with different sizes

    Example 2 demonstrates the items setup demonstrated in Figure 2.

    Figure 3: Stretched and left/rigth aligned items with different sizes WPF RadLayoutControl Stretched and left/rigth aligned items with different sizes

    Example 3 demonstrates the items setup demonstrated in Figure 3.

  • All center aligned items will be stacked in the center of the panel's available space.

    Figure 4: Centered items WPF RadLayoutControl Centered items

    Example 4 demonstrates the items setup demonstrated in Figure 4.

    Figure 5: Centered and left/right aligned items WPF RadLayoutControl Centered and left/right aligned items

    Example 5 demonstrates the items setup demonstrated in Figure 5.

    In case there are stretched items in the panel, the center items might look like they are stacked left or right. The positions of the centered items will depend on the collection index of the stretched items.

    Figure 6: Centered items and a single stretched item inserted at the end of the children collection WPF RadLayoutControl Centered items and a single stretched item inserted at the end of the children collection

    Example 6 demonstrates the items setup demonstrated in Figure 6.

    Figure 7: Centered items and a single stretched item inserted at the beginning of the children collection WPF RadLayoutControl Centered items and a single stretched item inserted at the beginning of the children collection

    Example 7 demonstrates the items setup demonstrated in Figure 7.

    Figure 8: Centered items and a single stretched item inserted around the middle of the children collection WPF RadLayoutControl Centered items and a single stretched item inserted around the middle of the children collection

    Example 8 demonstrates the items setup demonstrated in Figure 8.

    Figure 9: Centered, stretched and left/right aligned items WPF RadLayoutControl Centered, stretched and left/right aligned items

    Example 9 demonstrates the items setup demonstrated in Figure 9.

In summary, the panel allocates space for the left and right aligned items first. Then the available space that is left is given to the center aligned and the stretched items.

The order of the children in the LayoutPanel depends on their alignment and also their collection index.

The same rules are valid for a LayoutPanel with vertical orientation.

Code Examples

This section contains the items setup demonstrated in the images in the article.

Example 1: Left and right aligned items

<telerik:RadLayoutControl> 
    <Button Content="Left" HorizontalAlignment="Left" /> 
    <Button Content="Left" HorizontalAlignment="Left" /> 
    <Button Content="Left" HorizontalAlignment="Left" /> 
    <Button Content="Left aligned" HorizontalAlignment="Left" /> 
    <Button Content="Right" HorizontalAlignment="Right" /> 
    <Button Content="Right" HorizontalAlignment="Right" /> 
    <Button Content="Right" HorizontalAlignment="Right" /> 
</telerik:RadLayoutControl> 

Example 2: Stretched items with different sizes

<telerik:RadLayoutControl> 
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
    <Button Content="Stretch - with bigger size" HorizontalAlignment="Stretch" /> 
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
    <Button Content="Stretch - with bigger size" HorizontalAlignment="Stretch" /> 
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
</telerik:RadLayoutControl> 

Example 3: Stretched and left/rigth aligned items with different sizes

<telerik:RadLayoutControl> 
    <Button Content="Left" HorizontalAlignment="Left" /> 
    <Button Content="Left" HorizontalAlignment="Left" /> 
    <Button Content="Left - with bigger size" HorizontalAlignment="Left" /> 
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
    <Button Content="Right" HorizontalAlignment="Right" /> 
    <Button Content="Right" HorizontalAlignment="Right" /> 
</telerik:RadLayoutControl> 


Example 4: Centered items

<telerik:RadLayoutControl> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
</telerik:RadLayoutControl> 

Example 5: Centered and left/right aligned items

<telerik:RadLayoutControl> 
    <Button Content="Left" HorizontalAlignment="Left" /> 
    <Button Content="Right" HorizontalAlignment="Right" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
</telerik:RadLayoutControl> 


Example 6: Centered items and a single stretched item inserted at the end of the children collection

<telerik:RadLayoutControl> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
</telerik:RadLayoutControl> 


Example 7: Centered items and a single stretched item inserted at the beginning of the children collection

<telerik:RadLayoutControl>       
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" />         
    <Button Content="Center" HorizontalAlignment="Center" /> 
</telerik:RadLayoutControl>  

Example 8: Centered items and a single stretched item inserted in the middle of the children collection

<telerik:RadLayoutControl>       
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
    <Button Content="Center" HorizontalAlignment="Center" />         
    <Button Content="Center" HorizontalAlignment="Center" /> 
</telerik:RadLayoutControl> 


Example 9: Centered, stretched and left/right aligned items

<telerik:RadLayoutControl> 
    <Button Content="Left" HorizontalAlignment="Left" /> 
    <Button Content="Left" HorizontalAlignment="Left" /> 
    <Button Content="Left" HorizontalAlignment="Left" /> 
    <Button Content="Right" HorizontalAlignment="Right" /> 
    <Button Content="Right" HorizontalAlignment="Right" /> 
    <Button Content="Right" HorizontalAlignment="Right" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Stretch" HorizontalAlignment="Stretch" /> 
    <Button Content="Center" HorizontalAlignment="Center" /> 
    <Button Content="Stretched item with bigger size" HorizontalAlignment="Stretch" /> 
</telerik:RadLayoutControl> 

See Also

In this article