Implemented interface member:
property
StrokeThickness
Microsoft.Maui.IStroke.StrokeThickness
2 writes to StrokeThickness
Microsoft.Maui.Controls (2)
Border\Border.cs (1)
332 strokeShape.StrokeThickness = StrokeThickness;
RadioButton\RadioButton.cs (1)
480 StrokeThickness = 2,
14 references to StrokeThickness
Microsoft.Maui.Controls (14)
Shapes\Ellipse.cs (4)
37 float x = (float)StrokeThickness / 2; 38 float y = (float)StrokeThickness / 2; 39 float w = (float)(width - StrokeThickness); 40 float h = (float)(height - StrokeThickness);
Shapes\Rectangle.cs (4)
56 float x = (float)StrokeThickness / 2; 57 float y = (float)StrokeThickness / 2; 58 float w = (float)(width - StrokeThickness); 59 float h = (float)(height - StrokeThickness);
Shapes\Shape.cs (6)
60 /// <summary>Bindable property for <see cref="StrokeThickness"/>.</summary> 62 BindableProperty.Create(nameof(StrokeThickness), typeof(double), typeof(Shape), 1.0); 391 widthConstraint -= StrokeThickness; 392 heightConstraint -= StrokeThickness; 440 result.Height += StrokeThickness; 441 result.Width += StrokeThickness;