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;
8 references to StrokeThickness
Microsoft.Maui (7)
Graphics\MauiDrawable.Tizen.cs (2)
74 if (borderPath != null && Border.StrokeThickness > 0) 81 canvas.StrokeSize = (float)Border.StrokeThickness;
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 (1)
Handlers\MapElement\MapElementHandler.cs (1)
21 [nameof(IMapElement.StrokeThickness)] = MapStrokeThickness,