3 writes to EndPoint
Microsoft.Maui.Controls (3)
Brush\Brush.cs (1)
36 return new LinearGradientBrush { GradientStops = gradientStops, StartPoint = startPoint, EndPoint = endPoint };
Brush\BrushTypeConverter.cs (1)
235 EndPoint = endPoint,
LinearGradientBrush.cs (1)
26 EndPoint = endPoint;
5 references to EndPoint
Microsoft.Maui.Controls (3)
Brush\Brush.cs (1)
74 var endPoint = linearGradientBrush.EndPoint;
LinearGradientBrush.cs (2)
42 /// <summary>Bindable property for <see cref="EndPoint"/>.</summary> 44 nameof(EndPoint), typeof(Point), typeof(LinearGradientBrush), new Point(1, 1));
Microsoft.Maui.Controls.Compatibility (2)
iOS\Shapes\ShapeRenderer.cs (2)
564 new CGPoint(pathBounds.Left + linearGradientBrush.EndPoint.X * pathBounds.Width, pathBounds.Top + linearGradientBrush.EndPoint.Y * pathBounds.Height),