1 implementation of GetCount
Microsoft.Maui.Controls (1)
Picker\Picker.cs (1)
443 int IItemDelegate<string>.GetCount() => Items?.Count ?? ItemsSource?.Count ?? 0;
5 references to GetCount
Microsoft.Maui (5)
Core\Extensions\IPickerExtension.cs (2)
10 var returnValue = new string[picker.GetCount()]; 19 var returnValue = new List<string>(picker.GetCount());
Primitives\ItemDelegateList.cs (3)
15 public int Count => ItemDelegate.GetCount(); 21 var count = ItemDelegate.GetCount(); 28 var count = ItemDelegate.GetCount();