9 instantiations of LineSegment
Microsoft.Maui.Controls (9)
Shapes\PathFigureCollectionConverter.cs (2)
136 LineSegment lineSegment = new LineSegment 178 pathFigure.Segments.Add(new LineSegment
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) }
8 references to LineSegment
Microsoft.Maui.Controls (8)
Shapes\GeometryHelper.cs (3)
109 if (segSrc is LineSegment) 111 LineSegment lineSegSrc = segSrc as LineSegment;
Shapes\LineSegment.cs (1)
23 BindableProperty.Create(nameof(Point), typeof(Point), typeof(LineSegment), new Point(0, 0));
Shapes\PathFigureCollectionConverter.cs (2)
136 LineSegment lineSegment = new LineSegment 600 if (pathSegment is LineSegment lineSegment)
Shapes\PathGeometry.cs (2)
80 else if (segment is LineSegment lineSegment) 120 void AddLine(PathF path, LineSegment lineSegment)