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 };
12 references to Polyline
Microsoft.Maui.Controls (12)
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.iOS.cs (5)
11
if (VirtualView is
Polyline
polyline)
19
if (VirtualView is
Polyline
polyline)
25
public static void MapShape(IShapeViewHandler handler,
Polyline
polyline)
30
public static void MapPoints(IShapeViewHandler handler,
Polyline
polyline)
35
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);