11 references to BackgroundColor
Microsoft.Maui (3)
Handlers\Button\ButtonHandler.iOS.cs (1)
66
config.BaseBackgroundColor = ColorExtensions.
BackgroundColor
;
Platform\iOS\ContainerViewController.cs (1)
77
View.BackgroundColor = ColorExtensions.
BackgroundColor
;
Platform\iOS\ViewExtensions.cs (1)
92
platformView.BackgroundColor = ColorExtensions.
BackgroundColor
;
Microsoft.Maui.Controls (8)
Compatibility\Handlers\iOS\FrameRenderer.cs (2)
114
_actualView.Layer.BackgroundColor = Microsoft.Maui.Platform.ColorExtensions.
BackgroundColor
.CGColor;
133
backgroundLayer.BackgroundColor = ColorExtensions.
BackgroundColor
.CGColor;
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (2)
719
var color = Element.BackgroundColor == null ? Maui.Platform.ColorExtensions.
BackgroundColor
: Element.BackgroundColor.ToPlatform();
763
navigationBarAppearance.BackgroundColor = Maui.Platform.ColorExtensions.
BackgroundColor
;
Compatibility\Handlers\Shell\iOS\ShellFlyoutContentRenderer.cs (1)
237
View.BackgroundColor = backgroundImage is not null ? UIColor.FromPatternImage(backgroundImage) : color?.ToPlatform() ?? Maui.Platform.ColorExtensions.
BackgroundColor
;
Compatibility\Handlers\Shell\iOS\ShellFlyoutRenderer.cs (1)
326
TapoffView.BackgroundColor = Microsoft.Maui.Platform.ColorExtensions.
BackgroundColor
.ColorWithAlpha(0.5f);
Compatibility\Handlers\Shell\iOS\ShellRenderer.cs (1)
360
color = Microsoft.Maui.Platform.ColorExtensions.
BackgroundColor
;
Platform\iOS\ControlsModalWrapper.cs (1)
195
View!.BackgroundColor = modalBkgndColor?.ToPlatform() ?? Maui.Platform.ColorExtensions.
BackgroundColor
;