4 implementations of GroupCount
Microsoft.Maui.Controls.Compatibility (4)
iOS\CollectionView\EmptySource.cs (1)
8
public int
GroupCount
=> 0;
iOS\CollectionView\ListSource.cs (1)
45
public int
GroupCount
=> 1;
iOS\CollectionView\ObservableGroupedSource.cs (1)
41
public int
GroupCount
=> _groupSource.Count;
iOS\CollectionView\ObservableItemsSource.cs (1)
84
public int
GroupCount
=> 1;
6 references to GroupCount
Microsoft.Maui.Controls.Compatibility (6)
iOS\CollectionView\GroupableItemsViewController.cs (2)
171
if (ItemsSource.
GroupCount
< 1 || section > ItemsSource.
GroupCount
- 1)
iOS\CollectionView\IndexPathHelpers.cs (1)
38
if (indexPath.Section >= source.
GroupCount
)
iOS\CollectionView\ItemsViewController.cs (3)
236
return ItemsSource.
GroupCount
;
350
if (ItemsSource.
GroupCount
> 1)
354
for (int n = 0; n < ItemsSource.
GroupCount
; n++)