4 implementations of StrokeThickness
Microsoft.Maui.Controls (3)
Border\Border.cs (1)
179
public double
StrokeThickness
BoxView\BoxView.cs (1)
74
double IStroke.
StrokeThickness
=> 0;
Shapes\Shape.cs (1)
104
public double
StrokeThickness
Microsoft.Maui.Controls.Maps (1)
HandlerImpl\MapElement.Impl.cs (1)
11
double IStroke.
StrokeThickness
=> StrokeWidth;
9 references to StrokeThickness
Microsoft.Maui (5)
Graphics\ShapeDrawable.cs (2)
74
if (ShapeView == null || ShapeView.Shape == null || ShapeView.
StrokeThickness
<= 0 || ShapeView.Stroke == null)
80
float strokeThickness = (float)ShapeView.
StrokeThickness
;
Handlers\Border\BorderHandler.cs (2)
34
[nameof(IBorderView.
StrokeThickness
)] = MapStrokeThickness,
112
/// Maps the abstract <see cref="IStroke.
StrokeThickness
"/> property to the platform-specific implementations.
Handlers\ShapeView\ShapeViewHandler.cs (1)
25
[nameof(IShapeView.
StrokeThickness
)] = MapStrokeThickness,
Microsoft.Maui.Maps (4)
Handlers\MapElement\MapElementHandler.cs (1)
21
[nameof(IMapElement.
StrokeThickness
)] = MapStrokeThickness,
Handlers\MapElement\MapElementHandler.iOS.cs (3)
43
polygonRenderer.LineWidth = (nfloat)mapElement.
StrokeThickness
;
45
polylineRenderer.LineWidth = (nfloat)mapElement.
StrokeThickness
;
47
circleRenderer.LineWidth = (nfloat)mapElement.
StrokeThickness
;