10 references to ImageCell
Microsoft.Maui.Controls (3)
Cells\ImageCell.cs (3)
10 public static readonly BindableProperty ImageSourceProperty = BindableProperty.Create(nameof(ImageSource), typeof(ImageSource), typeof(ImageCell), null, 11 propertyChanging: (bindable, oldvalue, newvalue) => ((ImageCell)bindable).OnSourcePropertyChanging((ImageSource)oldvalue, (ImageSource)newvalue), 12 propertyChanged: (bindable, oldvalue, newvalue) => ((ImageCell)bindable).OnSourcePropertyChanged((ImageSource)oldvalue, (ImageSource)newvalue));
Microsoft.Maui.Controls.Compatibility (7)
iOS\Cells\ImageCellRenderer.cs (6)
22 var imageCell = (ImageCell)item; 33 var imageCell = (ImageCell)sender; 38 if (args.PropertyName == ImageCell.ImageSourceProperty.PropertyName) 42 async void SetImage(ImageCell cell, CellTableViewCell target)
iOS\ContextActionCell.cs (1)
222 if ((ContentCell as CellTableViewCell)?.Cell is ImageCell)