3 writes to Color
Microsoft.Maui.Controls (1)
Brush\Brush.cs (1)
57 return new SolidPaint { Color = solidColorBrush.Color };
Microsoft.Maui.Graphics (2)
Color.cs (1)
147 Color = this
SolidPaint.cs (1)
11 Color = color;
19 references to Color
Microsoft.Maui (14)
Animations\AnimationLerpingExtensions.cs (2)
60 var color = paint?.Color ?? Colors.Black; 61 var endColor = endPaint?.Color ?? Colors.Black;
Graphics\PaintExtensions.cs (3)
11 return solidPaint.Color; 28 return solidPaint == null || solidPaint.Color == null; 45 return solidPaint.Color == Colors.Transparent;
Graphics\PaintExtensions.iOS.cs (1)
38 BackgroundColor = solidPaint.Color.ToCGColor()
Handlers\Button\ButtonHandler.iOS.cs (1)
63 Color backgroundColor = solidPaint.Color;
Platform\iOS\CheckBoxExtensions.cs (1)
17 platformCheckBox.CheckBoxTintColor = solid.Color;
Platform\iOS\MauiCALayer.cs (4)
124 if (solidPaint.Color == null) 127 _backgroundColor = solidPaint.Color.ToPlatform(); 180 _strokeColor = solidPaint.Color == null 182 : solidPaint.Color.ToPlatform();
Platform\iOS\SearchBarExtensions.cs (1)
39 uiSearchBar.BarTintColor = solidPaint.Color.ToPlatform();
Platform\iOS\ViewExtensions.cs (1)
89 Color backgroundColor = solidPaint.Color;
Microsoft.Maui.Controls (1)
Brush\Brush.cs (1)
17 return new SolidColorBrush { Color = solidPaint.Color };
Microsoft.Maui.Graphics (2)
SolidPaint.cs (2)
20 return Color.Alpha < 1; 26 return $"[{nameof(SolidPaint)}: Color={Color}]";
Microsoft.Maui.Graphics.Skia (1)
SkiaCanvas.cs (1)
238 FillColor = solidPaint.Color;
Microsoft.Maui.Graphics.Win2D.WinUI.Desktop (1)
src\Graphics\src\Graphics\Platforms\Windows\PlatformCanvas.cs (1)
387 CurrentState.FillColor = solidPaint.Color;