4 implementations of Stroke
Microsoft.Maui.Controls (3)
Border\Border.cs (1)
217 Paint? IStroke.Stroke => Stroke;
BoxView\BoxView.cs (1)
72 Paint? IStroke.Stroke => null;
Shapes\Shape.cs (1)
166 Paint IStroke.Stroke => Stroke;
Microsoft.Maui.Controls.Maps (1)
HandlerImpl\MapElement.Impl.cs (1)
9 Paint? IStroke.Stroke => StrokeColor?.AsPaint();
7 references to Stroke
Microsoft.Maui (5)
Graphics\ShapeDrawable.cs (2)
74 if (ShapeView == null || ShapeView.Shape == null || ShapeView.StrokeThickness <= 0 || ShapeView.Stroke == null) 84 var stroke = ShapeView.Stroke;
Handlers\Border\BorderHandler.cs (2)
33 [nameof(IBorderView.Stroke)] = MapStroke, 101 /// Maps the abstract <see cref="IStroke.Stroke"/> property to the platform-specific implementations.
Handlers\ShapeView\ShapeViewHandler.cs (1)
24 [nameof(IShapeView.Stroke)] = MapStroke,
Microsoft.Maui.Maps (2)
Handlers\MapElement\MapElementHandler.cs (1)
20 [nameof(IMapElement.Stroke)] = MapStroke,
Handlers\MapElement\MapElementHandler.iOS.cs (1)
31 var platformColor = mapElement.Stroke.ToColor()?.ToPlatform();