5 references to ItemsSource
Microsoft.Maui.Controls (5)
ItemsView.cs (2)
24 /// <summary>Bindable property for <see cref="ItemsSource"/>.</summary> 26 BindableProperty.Create(nameof(ItemsSource), typeof(IEnumerable), typeof(ItemsView<TVisual>), null,
ListView\ListView.cs (3)
430 var list = ItemsSource as IList; 528 ItemTapped?.Invoke(this, new ItemTappedEventArgs(ItemsSource.Cast<object>().ElementAt(groupIndex), cell?.BindingContext, TemplatedItems.GetGlobalIndexOfItem(cell?.BindingContext))); 559 var itemSource = ItemsSource?.Cast<object>().ToList();