3 instantiations of PathFigureCollection
Microsoft.Maui.Controls (3)
Shapes\PathFigureCollectionConverter.cs (1)
27 PathFigureCollection pathFigureCollection = new PathFigureCollection();
Shapes\PathGeometry.cs (1)
18 Figures = new PathFigureCollection();
Shapes\RoundRectangleGeometry.cs (1)
106 PathFigureCollection pathFigureCollection = new PathFigureCollection
16 references to PathFigureCollection
Microsoft.Maui.Controls (16)
Shapes\PathFigureCollectionConverter.cs (6)
27 PathFigureCollection pathFigureCollection = new PathFigureCollection(); 35 public static void ParseStringToPathFigureCollection(PathFigureCollection pathFigureCollection, string pathString) 83 void ParseToPathFigureCollection(PathFigureCollection pathFigureCollection, string pathString, int startIndex) 586 private static string ParsePathFigureCollectionToString(PathFigureCollection pathFigureCollection) 679 if (value is PathFigureCollection pathFigureCollection) 684 throw new InvalidDataException($"Value is not of type {nameof(PathFigureCollection)}");
Shapes\PathGeometry.cs (9)
22 public PathGeometry(PathFigureCollection figures) 28 public PathGeometry(PathFigureCollection figures, FillRule fillRule) 36 BindableProperty.Create(nameof(Figures), typeof(PathFigureCollection), typeof(PathGeometry), null, 45 (bindable as PathGeometry)?.UpdatePathFigureCollection(oldValue as PathFigureCollection, newValue as PathFigureCollection); 50 public PathFigureCollection Figures 53 get { return (PathFigureCollection)GetValue(FiguresProperty); } 184 void UpdatePathFigureCollection(PathFigureCollection oldCollection, PathFigureCollection newCollection)
Shapes\RoundRectangleGeometry.cs (1)
106 PathFigureCollection pathFigureCollection = new PathFigureCollection