6 references to BackgroundImageSource
Microsoft.Maui.Controls (6)
Compatibility\Handlers\FlyoutPage\iOS\PhoneFlyoutPageRenderer.cs (1)
508
((Page)(Element)).
BackgroundImageSource
.LoadImage(MauiContext, result =>
Page\Page.cs (4)
52
/// <summary>Bindable property for <see cref="
BackgroundImageSource
"/>.</summary>
53
public static readonly BindableProperty BackgroundImageSourceProperty = BindableProperty.Create(nameof(
BackgroundImageSource
), typeof(ImageSource), typeof(Page), default(ImageSource));
839
if (!ImageSource.IsNullOrEmpty(
BackgroundImageSource
))
840
return new ImageSourcePaint(
BackgroundImageSource
);
VisualElement\VisualElement.Mapper.cs (1)
27
viewMapper.ReplaceMapping<IView, IViewHandler>(nameof(Page.
BackgroundImageSource
), MapBackgroundImageSource);