26 references to Location
Microsoft.Maui (2)
Animations\AnimationLerpingExtensions.cs (2)
36
=> new Rect(start.
Location
.Lerp(end.
Location
, progress), start.Size.Lerp(end.Size, progress));
Microsoft.Maui.Controls (24)
Shapes\RoundRectangleGeometry.cs (24)
76
new EllipseGeometry(new Point(Rect.
Location
.X + CornerRadius.TopLeft, Rect.
Location
.Y + CornerRadius.TopLeft), CornerRadius.TopLeft, CornerRadius.TopLeft));
80
new EllipseGeometry(new Point(Rect.
Location
.X + Rect.Width - CornerRadius.TopRight, Rect.
Location
.Y + CornerRadius.TopRight), CornerRadius.TopRight, CornerRadius.TopRight));
84
new EllipseGeometry(new Point(Rect.
Location
.X + Rect.Width - CornerRadius.BottomRight, Rect.
Location
.Y + Rect.Height - CornerRadius.BottomRight), CornerRadius.BottomRight, CornerRadius.BottomRight));
88
new EllipseGeometry(new Point(Rect.
Location
.X + CornerRadius.BottomLeft, Rect.
Location
.Y + Rect.Height - CornerRadius.BottomLeft), CornerRadius.BottomLeft, CornerRadius.BottomLeft));
93
StartPoint = new Point(Rect.
Location
.X + CornerRadius.TopLeft, Rect.
Location
.Y),
96
new LineSegment { Point = new Point(Rect.
Location
.X + Rect.Width - CornerRadius.TopRight, Rect.
Location
.Y) },
97
new LineSegment { Point = new Point(Rect.
Location
.X + Rect.Width, Rect.
Location
.Y + CornerRadius.TopRight) },
98
new LineSegment { Point = new Point(Rect.
Location
.X + Rect.Width, Rect.
Location
.Y + Rect.Height - CornerRadius.BottomRight) },
99
new LineSegment { Point = new Point(Rect.
Location
.X + Rect.Width - CornerRadius.BottomRight, Rect.
Location
.Y + Rect.Height) },
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) },
102
new LineSegment { Point = new Point(Rect.
Location
.X, Rect.
Location
.Y + CornerRadius.TopLeft) }