3 implementations of Source
Microsoft.Maui.Controls (3)
Button\Button.cs (1)
406 ImageSource IImageElement.Source => ImageSource;
Image\Image.cs (1)
67 public ImageSource Source
ImageButton\ImageButton.cs (1)
124 public ImageSource Source
7 references to Source
Microsoft.Maui.Controls (7)
DragAndDrop\DragGestureRecognizer.cs (1)
131 args.Data.Image = ie.Source;
DragAndDrop\DropGestureRecognizer.cs (1)
126 sourceTarget = imageElement.Source;
ImageElement.cs (4)
14 /// <summary>Bindable property for <see cref="IImageElement.Source"/>.</summary> 15 public static readonly BindableProperty SourceProperty = BindableProperty.Create(nameof(IImageElement.Source), typeof(ImageSource), typeof(IImageElement), default(ImageSource), 104 if (image.Source != null) 105 BindableObject.SetInheritedBindingContext(image.Source, visualElement?.BindingContext);
Platform\iOS\DragAndDropDelegate.cs (1)
205 args.Data.Image = imageElement.Source;