2 writes to Segments
Microsoft.Maui.Controls (2)
Shapes\PathFigure.cs (1)
16
Segments
= new PathSegmentCollection();
Shapes\RoundRectangleGeometry.cs (1)
94
Segments
= new PathSegmentCollection
15 references to Segments
Microsoft.Maui.Controls (14)
Shapes\GeometryHelper.cs (5)
47
figDst.
Segments
.Add(segDst);
63
figDst.
Segments
.Add(segDst);
87
figDst.
Segments
.Add(segDst);
105
foreach (PathSegment segSrc in figSrc.
Segments
)
223
figDst.
Segments
.Add(segDst);
Shapes\PathFigure.cs (2)
19
/// <summary>Bindable property for <see cref="
Segments
"/>.</summary>
21
BindableProperty.Create(nameof(
Segments
), typeof(PathSegmentCollection), typeof(PathFigure), null,
Shapes\PathFigureCollectionConverter.cs (6)
140
pathFigure.
Segments
.Add(lineSegment);
178
pathFigure.
Segments
.Add(new LineSegment
227
pathFigure.
Segments
.Add(bezierSegment);
268
pathFigure.
Segments
.Add(quadraticBezierSegment);
300
pathFigure.
Segments
.Add(arcSegment);
598
foreach (var pathSegment in pathFigure.
Segments
)
Shapes\PathGeometry.cs (1)
74
foreach (var segment in figure.
Segments
)
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Extensions\GeometryExtensions.cs (1)
95
foreach (PathSegment pathSegment in pathFigure.
Segments
)