7 instantiations of DoubleCollection
Microsoft.Maui.Controls (7)
Border\Border.cs (1)
148 defaultValueCreator: bindable => new DoubleCollection());
DoubleCollection.cs (4)
21 => d == null ? new() : new(d); 24 => f == null ? new() : new(Array.ConvertAll(f, x => (double)x));
DoubleCollectionConverter.cs (1)
34 var doubleCollection = new DoubleCollection();
Shapes\Shape.cs (1)
67 defaultValueCreator: bindable => new DoubleCollection());
12 references to DoubleCollection
Microsoft.Maui.Controls (12)
Border\Border.cs (3)
147 BindableProperty.Create(nameof(StrokeDashArray), typeof(DoubleCollection), typeof(Border), null, 185 public DoubleCollection? StrokeDashArray 188 get { return (DoubleCollection?)GetValue(StrokeDashArrayProperty); }
DoubleCollection.cs (2)
20 public static implicit operator DoubleCollection(double[] d) 23 public static implicit operator DoubleCollection(float[] f)
DoubleCollectionConverter.cs (4)
24 return (DoubleCollection)doublesArray; 28 return (DoubleCollection)floatsArray; 34 var doubleCollection = new DoubleCollection(); 49 if (value is not DoubleCollection dc)
Shapes\Shape.cs (3)
66 BindableProperty.Create(nameof(StrokeDashArray), typeof(DoubleCollection), typeof(Shape), null, 111 public DoubleCollection StrokeDashArray 114 get { return (DoubleCollection)GetValue(StrokeDashArrayProperty); }