1 write to TopLeft
Microsoft.Maui (1)
Primitives\CornerRadius.cs (1)
33
TopLeft
= topLeft;
17 references to TopLeft
Microsoft.Maui (5)
Converters\CornerRadiusTypeConverter.cs (1)
77
return $"{cr.
TopLeft
.ToString(CultureInfo.InvariantCulture)}, {cr.TopRight.ToString(CultureInfo.InvariantCulture)}, " +
Primitives\CornerRadius.cs (4)
49
return
TopLeft
== other.
TopLeft
&& TopRight == other.TopRight && BottomLeft == other.BottomLeft && BottomRight == other.BottomRight;
66
int hashCode =
TopLeft
.GetHashCode();
87
topLeft =
TopLeft
;
Microsoft.Maui.Controls (11)
BoxView\BoxView.cs (1)
92
(float)CornerRadius.
TopLeft
,
Shapes\RoundRectangle.cs (2)
61
float topLeftCornerRadius = (float)CornerRadius.
TopLeft
;
92
float topLeftCornerRadius = (float)Math.Max(0, CornerRadius.
TopLeft
- strokeThickness);
Shapes\RoundRectangleGeometry.cs (8)
74
if (CornerRadius.
TopLeft
> 0)
76
new EllipseGeometry(new Point(Rect.Location.X + CornerRadius.
TopLeft
, Rect.Location.Y + CornerRadius.
TopLeft
), CornerRadius.
TopLeft
, CornerRadius.
TopLeft
));
93
StartPoint = new Point(Rect.Location.X + CornerRadius.
TopLeft
, Rect.Location.Y),
102
new LineSegment { Point = new Point(Rect.Location.X, Rect.Location.Y + CornerRadius.
TopLeft
) }
123
float tl = (float)CornerRadius.
TopLeft
;
Microsoft.Maui.Controls.Build.Tasks (1)
CompiledConverters\StrokeShapeTypeConverter.cs (1)
179
yield return Instruction.Create(OpCodes.Ldc_R8, cornerRadius.
TopLeft
);