Implemented interface member:
property
File
Microsoft.Maui.IFileImageSource.File
1 write to File
Microsoft.Maui.Controls (1)
ImageSource.cs (1)
71 return new FileImageSource { File = file };
8 references to File
Microsoft.Maui.Controls (7)
FileImageSource.cs (5)
10 /// <summary>Bindable property for <see cref="File"/>.</summary> 11 public static readonly BindableProperty FileProperty = BindableProperty.Create(nameof(File), typeof(string), typeof(FileImageSource), default(string)); 14 public override bool IsEmpty => string.IsNullOrEmpty(File); 32 return $"File: {File}"; 42 return file?.File;
FileImageSourceConverter.cs (1)
30 return fis.File;
ImageSourceConverter.cs (1)
37 return fis.File;
Microsoft.Maui.Controls.Compatibility (1)
Tizen\ResourcePath.cs (1)
44 return GetPath(filesource.File);