6 instantiations of PathFigure
Microsoft.Maui.Controls (6)
Shapes\GeometryHelper.cs (4)
41
PathFigure figDst = new
PathFigure
();
53
PathFigure figDst = new
PathFigure
();
69
PathFigure figDst = new
PathFigure
();
97
PathFigure figDst = new
PathFigure
Shapes\PathFigureCollectionConverter.cs (1)
122
pathFigure = new
PathFigure
Shapes\RoundRectangleGeometry.cs (1)
90
PathFigure pathFigure = new
PathFigure
20 references to PathFigure
Microsoft.Maui.Controls (19)
Shapes\GeometryHelper.cs (5)
41
PathFigure
figDst = new PathFigure();
53
PathFigure
figDst = new PathFigure();
69
PathFigure
figDst = new PathFigure();
95
foreach (
PathFigure
figSrc in pathGeoSrc.Figures)
97
PathFigure
figDst = new PathFigure
Shapes\PathFigure.cs (5)
21
BindableProperty.Create(nameof(Segments), typeof(PathSegmentCollection), typeof(
PathFigure
), null,
26
(bindable as
PathFigure
)?.UpdatePathSegmentCollection(oldValue as PathSegmentCollection, newValue as PathSegmentCollection);
31
BindableProperty.Create(nameof(StartPoint), typeof(Point), typeof(
PathFigure
), new Point(0, 0));
35
BindableProperty.Create(nameof(IsClosed), typeof(bool), typeof(
PathFigure
), false);
39
BindableProperty.Create(nameof(IsFilled), typeof(bool), typeof(
PathFigure
), true);
Shapes\PathFigureCollection.cs (1)
6
public sealed class PathFigureCollection : ObservableCollection<
PathFigure
>
Shapes\PathFigureCollectionConverter.cs (2)
85
PathFigure
pathFigure = null;
590
foreach (
var
pathFigure in pathFigureCollection)
Shapes\PathGeometry.cs (5)
67
foreach (
var
figure in Figures)
190
foreach (
var
oldPathFigure in oldCollection)
202
foreach (
var
newPathFigure in newCollection)
215
if (!(oldItem is
PathFigure
oldPathFigure))
227
if (!(newItem is
PathFigure
newPathFigure))
Shapes\RoundRectangleGeometry.cs (1)
90
PathFigure
pathFigure = new PathFigure
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Extensions\GeometryExtensions.cs (1)
87
foreach (
PathFigure
pathFigure in pathGeometry.Figures)