3 overrides of IsEmpty
Microsoft.Maui.Controls (3)
GradientBrush.cs (1)
32 public override bool IsEmpty =>
ImageBrush.cs (1)
15 public override bool IsEmpty =>
SolidColorBrush.cs (1)
24 public override bool IsEmpty
4 references to IsEmpty
Microsoft.Maui.Controls (1)
Brush\Brush.cs (1)
114 return brush == null || brush.IsEmpty;
Microsoft.Maui.Controls.Compatibility (3)
iOS\Renderers\PageRenderer.cs (1)
139 if (Element.Background != null && !Element.Background.IsEmpty)
iOS\VisualElementRenderer.cs (2)
190 if (element.Background != null && (!element.Background.IsEmpty || (oldElement != null && element.Background != oldElement.Background))) 256 bool hasBackground = Element?.Background != null && !Element.Background.IsEmpty;