2 writes to Data
Microsoft.Maui.Controls (2)
Shapes\Path.cs (1)
19
Data
= data;
Shapes\StrokeShapeTypeConverter.cs (1)
74
return new Path {
Data
= pathGeometry };
9 references to Data
Microsoft.Maui.Controls (8)
Handlers\Shapes\Path\PathHandler.cs (1)
11
[nameof(Path.
Data
)] = MapData,
Platform\ShapeExtensions.cs (1)
13
var data = path.
Data
;
Shapes\Path.cs (6)
22
/// <summary>Bindable property for <see cref="
Data
"/>.</summary>
24
BindableProperty.Create(nameof(
Data
), typeof(Geometry), typeof(Path), null,
81
OnPropertyChanged(nameof(
Data
));
86
OnPropertyChanged(nameof(
Data
));
112
if (
Data
!= null)
113
Data
.AppendPath(path);
Microsoft.Maui.Controls.Compatibility (1)
iOS\Shapes\PathRenderer.cs (1)
46
Control.UpdatePath(Element.
Data
.ToCGPath(Element.RenderTransform));