--- -api-id: T:Windows.UI.Xaml.Controls.StackPanel -api-type: winrt class --- # Windows.UI.Xaml.Controls.StackPanel ## -description Arranges child elements into a single line that can be oriented horizontally or vertically. ## -xaml-syntax ```xaml -or-   oneOrMoreChildren ``` ## -remarks > [!TIP] > For more info, design guidance, and code examples, see [Layout panels](/windows/uwp/design/layout/layout-panels#stackpanel). StackPanel is a layout panel that arranges child elements into a single line that can be oriented horizontally or vertically. :::image type="content" source="images/controls/StackPanel.png" alt-text="StackPanel layout control"::: By default, StackPanel stacks items vertically from top to bottom in the order they are declared. You can set the [Orientation](stackpanel_orientation.md) property to **Horizontal** to stack items from left to right. You can insert items into a StackPanel at a specific location using the [InsertAt](uielementcollection_insertat_1232866588.md) method in code-behind. ### Border properties StackPanel defines border properties that let you draw a border around the StackPanel without using an additional [Border](border.md) element. The properties are [StackPanel.BorderBrush](stackpanel_borderbrush.md), [StackPanel.BorderThickness](stackpanel_borderthickness.md), [StackPanel.CornerRadius](stackpanel_cornerradius.md), and [StackPanel.Padding](stackpanel_padding.md). ```xaml ``` ### Version history | Windows version | SDK version | Value added | | -- | -- | -- | | 1607 | 14393 | GetInsertionIndexes | | 1709 | 16299 | Spacing | | 1809 | 17763 | BackgroundSizing | ## -examples > [!TIP] > For more info, design guidance, and code examples, see [Stack panel](/windows/apps/design/layout/layout-panels#stackpanel). > [!div class="nextstepaction"] > [Open the WinUI 2 Gallery app and see the StackPanel in action](winui2gallery:/item/StackPanel) > The **WinUI 2 Gallery** app includes interactive examples of most WinUI 2 controls, features, and functionality. Get the app from the [Microsoft Store](https://www.microsoft.com/store/productId/9MSVH128X2ZT) or get the source code on [GitHub](https://github.com/Microsoft/WinUI-Gallery/tree/winui2). The following example shows how to create a StackPanel of items. [!code-xaml[LayoutOvwStackPanel_1](../windows.ui.xaml/code/layout_ovw_all/CSharp/MainPage.xaml#SnippetLayoutOvwStackPanel_1)] [!code-xaml[02](../windows.ui.xaml.controls/code/StackPanel1/csharp/Page.xaml#Snippet02)] [!code-csharp[01](../windows.ui.xaml.controls/code/StackPanel1/csharp/Page.xaml.cs#Snippet01)] [!code-vb[01](../windows.ui.xaml.controls/code/StackPanel1/vbnet/Page.xaml.vb#Snippet01)] ## -see-also [Panel](panel.md), [IScrollSnapPointsInfo](../windows.ui.xaml.controls.primitives/iscrollsnappointsinfo.md), [Layout panels](/windows/uwp/design/layout/layout-panels#stackpanel), [Define layouts](/windows/uwp/layout/layouts-with-xaml), [Alignment, margin, and padding](/windows/uwp/layout/alignment-margin-padding), [Canvas](canvas.md), [Grid](grid.md), [ItemsStackPanel](itemsstackpanel.md), [VariableSizedWrapGrid](variablesizedwrapgrid.md), [VirtualizingStackPanel](virtualizingstackpanel.md), [Controls list](/windows/uwp/design/controls-and-patterns/), [Controls by function](/windows/uwp/controls-and-patterns/controls-by-function)