1 write to BottomLeft
Microsoft.Maui (1)
Primitives\CornerRadius.cs (1)
35
BottomLeft
= bottomLeft;
19 references to BottomLeft
Microsoft.Maui (5)
Converters\CornerRadiusTypeConverter.cs (1)
78
$"{cr.
BottomLeft
.ToString(CultureInfo.InvariantCulture)}, {cr.BottomRight.ToString(CultureInfo.InvariantCulture)}";
Primitives\CornerRadius.cs (4)
49
return TopLeft == other.TopLeft && TopRight == other.TopRight &&
BottomLeft
== other.
BottomLeft
&& BottomRight == other.BottomRight;
68
hashCode = (hashCode * 397) ^
BottomLeft
.GetHashCode();
89
bottomLeft =
BottomLeft
;
Microsoft.Maui.Controls (11)
BoxView\BoxView.cs (1)
94
(float)CornerRadius.
BottomLeft
,
Shapes\RoundRectangle.cs (2)
63
float bottomLeftCornerRadius = (float)CornerRadius.
BottomLeft
;
94
float bottomLeftCornerRadius = (float)Math.Max(0, CornerRadius.
BottomLeft
- strokeThickness);
Shapes\RoundRectangleGeometry.cs (8)
86
if (CornerRadius.
BottomLeft
> 0)
88
new EllipseGeometry(new Point(Rect.Location.X + CornerRadius.
BottomLeft
, Rect.Location.Y + Rect.Height - CornerRadius.
BottomLeft
), CornerRadius.
BottomLeft
, CornerRadius.
BottomLeft
));
100
new LineSegment { Point = new Point(Rect.Location.X + CornerRadius.
BottomLeft
, Rect.Location.Y + Rect.Height) },
101
new LineSegment { Point = new Point(Rect.Location.X, Rect.Location.Y + Rect.Height - CornerRadius.
BottomLeft
) },
125
float bl = (float)CornerRadius.
BottomLeft
;
Microsoft.Maui.Controls.Build.Tasks (1)
CompiledConverters\StrokeShapeTypeConverter.cs (1)
181
yield return Instruction.Create(OpCodes.Ldc_R8, cornerRadius.
BottomLeft
);
Microsoft.Maui.Controls.Compatibility (2)
Tizen\Extensions\BrushExtensions.cs (2)
37
new SKPoint((float)cornerRadius.
BottomLeft
, (float)cornerRadius.
BottomLeft
)