10 writes to Point
Microsoft.Maui.Controls (10)
Shapes\LineSegment.cs (1)
18
Point
= point;
Shapes\PathFigureCollectionConverter.cs (2)
138
Point
= lastPoint
180
Point
= lastPoint
Shapes\RoundRectangleGeometry.cs (7)
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) }
10 references to Point
Microsoft.Maui.Controls (7)
Shapes\GeometryHelper.cs (1)
112
ptLast = matx.Transform(lineSegSrc.
Point
);
Shapes\LineSegment.cs (2)
21
/// <summary>Bindable property for <see cref="
Point
"/>.</summary>
23
BindableProperty.Create(nameof(
Point
), typeof(Point), typeof(LineSegment), new Point(0, 0));
Shapes\PathFigureCollectionConverter.cs (2)
603
.Append(lineSegment.
Point
.X.ToString(CultureInfo.InvariantCulture))
605
.Append(lineSegment.
Point
.Y.ToString(CultureInfo.InvariantCulture))
Shapes\PathGeometry.cs (2)
123
(float)(lineSegment.
Point
.X),
124
(float)(lineSegment.
Point
.Y));
Microsoft.Maui.Controls.Compatibility (3)
Tizen\Extensions\GeometryExtensions.cs (3)
103
Forms.ConvertToScaledPixel(lineSegment.
Point
.X),
104
Forms.ConvertToScaledPixel(lineSegment.
Point
.Y));
105
lastPoint = lineSegment.
Point
;