19 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)
Microsoft.Maui.Controls.Compatibility (5)
iOS\CollectionView\CarouselViewController.cs (1)
135 protected override bool IsHorizontal => (Carousel?.ItemsLayout)?.Orientation == ItemsLayoutOrientation.Horizontal;
iOS\CollectionView\ItemsViewLayout.cs (2)
42 var scrollDirection = itemsLayout.Orientation == ItemsLayoutOrientation.Horizontal 546 if (itemsLayout.Orientation == ItemsLayoutOrientation.Vertical)
iOS\CollectionView\StructuredItemsViewController.cs (1)
58 protected override bool IsHorizontal => (ItemsView?.ItemsLayout as ItemsLayout)?.Orientation == ItemsLayoutOrientation.Horizontal;
iOS\CollectionView\StructuredItemsViewRenderer.cs (1)
69 return new ListViewLayout(new LinearItemsLayout(ItemsLayoutOrientation.Vertical), itemSizingStrategy);