1 implementation of IItemsLayout
Microsoft.Maui.Controls (1)
Items\ItemsLayout.cs (1)
5
public abstract class ItemsLayout : BindableObject,
IItemsLayout
8 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)
115
BindableProperty.Create(nameof(ItemsLayout), typeof(
IItemsLayout
), typeof(ItemsView),
127
protected
IItemsLayout
InternalItemsLayout
129
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