namespace MauiSpark.Vues; public partial class ImageResultatVue : ContentView { public static readonly BindableProperty ImageProperty = BindableProperty.Create(nameof(Image), typeof(ImageSource), typeof(ImageResultatVue), null); public ImageSource Image { get => (ImageSource)GetValue(ImageProperty); set => SetValue(ImageProperty, value); } public ImageResultatVue() { InitializeComponent(); BindingContext = this; } }