5 references to BackgroundImageSource
Microsoft.Maui.Controls (5)
Page\Page.cs (4)
55
/// <summary>Bindable property for <see cref="
BackgroundImageSource
"/>.</summary>
56
public static readonly BindableProperty BackgroundImageSourceProperty = BindableProperty.Create(nameof(
BackgroundImageSource
), typeof(ImageSource), typeof(Page), default(ImageSource));
842
if (!ImageSource.IsNullOrEmpty(
BackgroundImageSource
))
843
return new ImageSourcePaint(
BackgroundImageSource
);
VisualElement\VisualElement.Mapper.cs (1)
27
viewMapper.ReplaceMapping<IView, IViewHandler>(nameof(Page.
BackgroundImageSource
), MapBackgroundImageSource);