15 references to StrokeDashArray
Microsoft.Maui.Controls (4)
Shape\Shape.Mapper.cs (1)
16
ShapeViewHandler.Mapper.ReplaceMapping<IShapeView, IShapeViewHandler>(nameof(
StrokeDashArray
), MapStrokeDashArray);
Shapes\Shape.cs (3)
64
/// <summary>Bindable property for <see cref="
StrokeDashArray
"/>.</summary>
66
BindableProperty.Create(nameof(
StrokeDashArray
), typeof(DoubleCollection), typeof(Shape), null,
187
=>
StrokeDashArray
.Select(a => (float)a).ToArray();
Microsoft.Maui.Controls.Compatibility (11)
iOS\Shapes\ShapeRenderer.cs (11)
126
if (Element.
StrokeDashArray
== null || Element.
StrokeDashArray
.Count == 0)
133
if (Element.
StrokeDashArray
.Count % 2 == 0)
135
array = new double[Element.
StrokeDashArray
.Count];
136
dashArray = new nfloat[Element.
StrokeDashArray
.Count];
137
Element.
StrokeDashArray
.CopyTo(array, 0);
141
array = new double[2 * Element.
StrokeDashArray
.Count];
142
dashArray = new nfloat[2 * Element.
StrokeDashArray
.Count];
143
Element.
StrokeDashArray
.CopyTo(array, 0);
144
Element.
StrokeDashArray
.CopyTo(array, Element.
StrokeDashArray
.Count);