Back to Devexpress

LayoutGroup.Orientation Property

wpf-devexpress-dot-xpf-dot-layoutcontrol-dot-layoutgroup-34b86e3b.md

latest4.1 KB
Original Source

LayoutGroup.Orientation Property

Gets or sets whether the group’s items are arranged horizontally or vertically. This is a dependency property.

Namespace : DevExpress.Xpf.LayoutControl

Assembly : DevExpress.Xpf.LayoutControl.v25.2.dll

NuGet Package : DevExpress.Wpf.LayoutControl

Declaration

csharp
public Orientation Orientation { get; set; }
vb
Public Property Orientation As Orientation

Property Value

TypeDescription
Orientation

A Orientation value that specifies the group’s orientation.

|

Remarks

Child items are arranged either horizontally or vertically within a LayoutGroup. The default orientation is specified by the LayoutGroup.DefaultOrientation field, which is set to Horizontal.

The alignment of items within a group is determined by their HorizontalAlignment and VerticalAlignment properties.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Orientation property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-data-grid-implement-crud-operations/CS/CodeBehind/EFCore/ServerMode/IssueDetailView.xaml#L8

xml
<Grid>
    <dxlc:LayoutControl x:Name="layoutControl" Orientation="Vertical"
                        VerticalAlignment="Top" Width="300">

wpf-synchronous-theme-preload-with-splashscreen/CS/ThemePreloadwithSplashscreen/ComplexWindow.xaml#L35

xml
<Grid>
    <dxlc:LayoutControl VerticalAlignment="Stretch" Orientation="Vertical">
        <dxlc:LayoutGroup Orientation="Horizontal">

reporting-wpf-wizard-custom-page/CS/App.xaml#L19

xml
<dxlc:LayoutControl Grid.Column="1">
    <dxlc:LayoutGroup Orientation="Vertical">
        <dxlc:LayoutItem Label="Orientation: " LabelVerticalAlignment="Top">

wpf-scheduler-specify-custom-edit-and-recurrence-dialogs/CS/CustomMvvmFormWithRecurrenceExample/HospitalAppointmentWindow.xaml#L32

xml
dxe:ValidationService.IsValidationContainer="True"
Orientation="Vertical">
<dxlc:LayoutGroup Orientation="Horizontal">

reporting-wpf-drill-through/CS/Viewer/MainWindow.xaml#L15

xml
<dxlc:LayoutControl Orientation="Vertical">
    <dxlc:LayoutItem>

See Also

LayoutGroup Class

LayoutGroup Members

DevExpress.Xpf.LayoutControl Namespace