1 implementation of IItemsLayout
Microsoft.Maui.Controls (1)
Items\ItemsLayout.cs (1)
5
public abstract class ItemsLayout : BindableObject,
IItemsLayout
9 references to IItemsLayout
Microsoft.Maui.Controls (8)
Items\ItemsLayoutTypeConverter.cs (1)
53
throw new InvalidOperationException($"Cannot convert \"{strValue}\" into {typeof(
IItemsLayout
)}");
Items\ItemsView.cs (3)
112
BindableProperty.Create(nameof(ItemsLayout), typeof(
IItemsLayout
), typeof(ItemsView),
124
protected
IItemsLayout
InternalItemsLayout
126
get => (
IItemsLayout
)GetValue(InternalItemsLayoutProperty);
Items\LinearItemsLayout.cs (3)
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)
Items\StructuredItemsView.cs (1)
55
public
IItemsLayout
ItemsLayout
Microsoft.Maui.Controls.Compatibility (1)
iOS\CollectionView\StructuredItemsViewRenderer.cs (1)
56
var
itemsLayout = ItemsView.ItemsLayout;