14 references to ItemsLayoutOrientation
Microsoft.Maui.Controls (14)
Items\CarouselView.cs (1)
226
ItemsLayout = new LinearItemsLayout(
ItemsLayoutOrientation
.Horizontal)
Items\GridItemsLayout.cs (2)
20
public GridItemsLayout([Parameter("Orientation")]
ItemsLayoutOrientation
orientation) : base(orientation)
25
public GridItemsLayout(int span, [Parameter("Orientation")]
ItemsLayoutOrientation
orientation) :
Items\ItemsLayout.cs (2)
8
public
ItemsLayoutOrientation
Orientation { get; }
10
protected ItemsLayout([Parameter("Orientation")]
ItemsLayoutOrientation
orientation)
Items\ItemsLayoutTypeConverter.cs (4)
23
ItemsLayoutOrientation
? orientation = default(
ItemsLayoutOrientation
?);
32
orientation =
ItemsLayoutOrientation
.Vertical;
37
orientation =
ItemsLayoutOrientation
.Horizontal;
Items\LinearItemsLayout.cs (5)
10
public LinearItemsLayout([Parameter("Orientation")]
ItemsLayoutOrientation
orientation) : base(orientation)
15
public static readonly IItemsLayout Vertical = new LinearItemsLayout(
ItemsLayoutOrientation
.Vertical);
17
public static readonly IItemsLayout Horizontal = new LinearItemsLayout(
ItemsLayoutOrientation
.Horizontal);
20
public static readonly IItemsLayout CarouselVertical = new LinearItemsLayout(
ItemsLayoutOrientation
.Vertical)
26
internal static readonly LinearItemsLayout CarouselDefault = new LinearItemsLayout(
ItemsLayoutOrientation
.Horizontal)