6 references to BackgroundColor
Microsoft.Maui.Controls (3)
SwipeView\SwipeItem.cs (3)
11
/// <summary>Bindable property for <see cref="
BackgroundColor
"/>.</summary>
12
public static readonly BindableProperty BackgroundColorProperty = BindableProperty.Create(nameof(
BackgroundColor
), typeof(Color), typeof(SwipeItem), null);
33
Paint ISwipeItemMenuItem.Background => new SolidPaint(
BackgroundColor
);
Microsoft.Maui.Controls.Compatibility (3)
iOS\Renderers\SwipeViewRenderer.cs (3)
600
BackgroundColor = formsSwipeItem.
BackgroundColor
.ToPlatform()
611
var textColor = GetSwipeItemColor(formsSwipeItem.
BackgroundColor
);
703
var tintColor = GetSwipeItemColor(swipeItem.
BackgroundColor
);