3 instantiations of Polyline
Microsoft.Maui.Controls (3)
Shapes\StrokeShapeTypeConverter.cs (3)
96 return new Polyline(); 102 return new Polyline(); 104 return new Polyline { Points = points };
10 references to Polyline
Microsoft.Maui.Controls (10)
Handlers\Shapes\Polyline\PolylineHandler.cs (4)
8 public static new IPropertyMapper<Polyline, IShapeViewHandler> Mapper = new PropertyMapper<Polyline, IShapeViewHandler>(ShapeViewHandler.Mapper) 11 [nameof(Polyline.Points)] = MapPoints, 12 [nameof(Polyline.FillRule)] = MapFillRule,
Handlers\Shapes\Polyline\PolylineHandler.Standard.cs (3)
9 public static void MapShape(IShapeViewHandler handler, Polyline polyline) { } 10 public static void MapPoints(IShapeViewHandler handler, Polyline polyline) { } 11 public static void MapFillRule(IShapeViewHandler handler, Polyline polyline) { }
Hosting\AppHostBuilderExtensions.cs (1)
100 handlersCollection.AddHandler<Shapes.Polyline, PolylineHandler>();
Shapes\Polyline.cs (2)
22 BindableProperty.Create(nameof(Points), typeof(PointCollection), typeof(Polyline), null, defaultValueCreator: bindable => new PointCollection()); 26 BindableProperty.Create(nameof(FillRule), typeof(FillRule), typeof(Polyline), FillRule.EvenOdd);