StackPanel.LayoutDirection Property
Gets or sets the direction along which this stack panel arranges its child controls.
Namespace: DevExpress.Utils.Layout
Assembly: DevExpress.Utils.v24.1.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
Declaration
[DefaultValue(StackPanelLayoutDirection.LeftToRight)]
[DXCategory("Layout")]
public StackPanelLayoutDirection LayoutDirection { get; set; }
Property Value
Type | Default | Description |
---|---|---|
DevExpress.Utils.Layout.StackPanelLayoutDirection | LeftToRight | Specifies the layout direction for child stack panel items. |
Remarks
Use the LayoutDirection to choose one of four available directions:
- from left to right (default value);
- from right to left;
- bottom-up;
- top-down (image below).
See Also