6 references to RemainingItemsThreshold
Microsoft.Maui.Controls (6)
Handlers\Items\iOS\ItemsViewDelegator.cs (2)
61 switch (itemsView.RemainingItemsThreshold) 70 if (source.ItemCount - 1 - lastVisibleItemIndex <= itemsView.RemainingItemsThreshold)
Handlers\Items2\iOS\ItemsViewDelegator2.cs (2)
61 switch (itemsView.RemainingItemsThreshold) 70 if (source.ItemCount - 1 - lastVisibleItemIndex <= itemsView.RemainingItemsThreshold)
Items\ItemsView.cs (2)
100 /// <summary>Bindable property for <see cref="RemainingItemsThreshold"/>.</summary> 102 BindableProperty.Create(nameof(RemainingItemsThreshold), typeof(int), typeof(ItemsView), -1, validateValue: (bindable, value) => (int)value >= -1);