3 writes to CornerRadius
Microsoft.Maui.Controls (3)
IndicatorView\IndicatorStackLayout.cs (1)
146
CornerRadius
= _indicatorView.IndicatorsShape == IndicatorShape.Circle
RadioButton\RadioButton.cs (1)
697
CornerRadius
= (int)value,
Shapes\StrokeShapeTypeConverter.cs (1)
124
return new RoundRectangle {
CornerRadius
= cornerRadius };
11 references to CornerRadius
Microsoft.Maui.Controls (11)
Handlers\Shapes\RoundRectangle\RoundRectangleHandler.cs (1)
10
[nameof(RoundRectangle.
CornerRadius
)] = MapCornerRadius
Shapes\RoundRectangle.cs (10)
15
/// <summary>Bindable property for <see cref="
CornerRadius
"/>.</summary>
17
BindableProperty.Create(nameof(
CornerRadius
), typeof(CornerRadius), typeof(RoundRectangle), new CornerRadius());
61
float topLeftCornerRadius = (float)
CornerRadius
.TopLeft;
62
float topRightCornerRadius = (float)
CornerRadius
.TopRight;
63
float bottomLeftCornerRadius = (float)
CornerRadius
.BottomLeft;
64
float bottomRightCornerRadius = (float)
CornerRadius
.BottomRight;
92
float topLeftCornerRadius = (float)Math.Max(0,
CornerRadius
.TopLeft - strokeThickness);
93
float topRightCornerRadius = (float)Math.Max(0,
CornerRadius
.TopRight - strokeThickness);
94
float bottomLeftCornerRadius = (float)Math.Max(0,
CornerRadius
.BottomLeft - strokeThickness);
95
float bottomRightCornerRadius = (float)Math.Max(0,
CornerRadius
.BottomRight - strokeThickness);