6 writes to StartPoint
Microsoft.Maui.Controls (6)
Shapes\GeometryHelper.cs (4)
44
figDst.
StartPoint
= matx.Transform(lineGeoSrc.StartPoint);
56
figDst.
StartPoint
= matx.Transform(new Point(rectGeoSrc.Rect.Left, rectGeoSrc.Rect.Top));
81
figDst.
StartPoint
= pt;
101
StartPoint
= matx.Transform(figSrc.StartPoint)
Shapes\PathFigureCollectionConverter.cs (1)
124
StartPoint
= lastPoint
Shapes\RoundRectangleGeometry.cs (1)
93
StartPoint
= new Point(Rect.Location.X + CornerRadius.TopLeft, Rect.Location.Y),
11 references to StartPoint
Microsoft.Maui.Controls (8)
Shapes\GeometryHelper.cs (2)
101
StartPoint = matx.Transform(figSrc.
StartPoint
)
103
Point ptLast = figDst.
StartPoint
;
Shapes\PathFigure.cs (2)
29
/// <summary>Bindable property for <see cref="
StartPoint
"/>.</summary>
31
BindableProperty.Create(nameof(
StartPoint
), typeof(Point), typeof(PathFigure), new Point(0, 0));
Shapes\PathFigureCollectionConverter.cs (2)
593
.Append(pathFigure.
StartPoint
.X.ToString(CultureInfo.InvariantCulture))
595
.Append(pathFigure.
StartPoint
.Y.ToString(CultureInfo.InvariantCulture))
Shapes\PathGeometry.cs (2)
69
float startPointX = (float)figure.
StartPoint
.X;
70
float startPointY = (float)figure.
StartPoint
.Y;
Microsoft.Maui.Controls.Compatibility (3)
Tizen\Extensions\GeometryExtensions.cs (3)
90
Forms.ConvertToScaledPixel(pathFigure.
StartPoint
.X),
91
Forms.ConvertToScaledPixel(pathFigure.
StartPoint
.Y));
93
Point lastPoint = pathFigure.
StartPoint
;