4 implementations of GetIndexForItem
Microsoft.Maui.Controls (4)
Handlers\Items\iOS\EmptySource.cs (1)
31 public NSIndexPath GetIndexForItem(object item)
Handlers\Items\iOS\ListSource.cs (1)
75 public NSIndexPath GetIndexForItem(object item)
Handlers\Items\iOS\ObservableGroupedSource.cs (1)
62 public NSIndexPath GetIndexForItem(object item)
Handlers\Items\iOS\ObservableItemsSource.cs (1)
77 public NSIndexPath GetIndexForItem(object item)
7 references to GetIndexForItem
Microsoft.Maui.Controls (7)
Handlers\Items\iOS\CarouselViewController.cs (3)
315 var currentItemPosition = ItemsSource.GetIndexForItem(carousel.CurrentItem).Row; 555 var positionCurrentItem = ItemsSource.GetIndexForItem(currentItem).Row; 618 var pos = ItemsSource.GetIndexForItem(item).Row;
Handlers\Items\iOS\ItemsViewController.cs (1)
402 return ItemsSource.GetIndexForItem(item);
Handlers\Items2\iOS\CarouselViewController2.cs (2)
236 var currentItemPosition = ItemsSource.GetIndexForItem(carousel.CurrentItem).Row; 497 var positionCurrentItem = ItemsSource.GetIndexForItem(currentItem).Row;
Handlers\Items2\iOS\ItemsViewController2.cs (1)
286 return ItemsSource.GetIndexForItem(item);