1 write to BottomRight
Microsoft.Maui (1)
Primitives\CornerRadius.cs (1)
36 BottomRight = bottomRight;
17 references to BottomRight
Microsoft.Maui (5)
Converters\CornerRadiusTypeConverter.cs (1)
78 $"{cr.BottomLeft.ToString(CultureInfo.InvariantCulture)}, {cr.BottomRight.ToString(CultureInfo.InvariantCulture)}";
Primitives\CornerRadius.cs (4)
49 return TopLeft == other.TopLeft && TopRight == other.TopRight && BottomLeft == other.BottomLeft && BottomRight == other.BottomRight; 69 hashCode = (hashCode * 397) ^ BottomRight.GetHashCode(); 90 bottomRight = BottomRight;
Microsoft.Maui.Controls (11)
BoxView\BoxView.cs (1)
95 (float)CornerRadius.BottomRight);
Shapes\RoundRectangle.cs (2)
64 float bottomRightCornerRadius = (float)CornerRadius.BottomRight; 95 float bottomRightCornerRadius = (float)Math.Max(0, CornerRadius.BottomRight - strokeThickness);
Shapes\RoundRectangleGeometry.cs (8)
82 if (CornerRadius.BottomRight > 0) 84 new EllipseGeometry(new Point(Rect.Location.X + Rect.Width - CornerRadius.BottomRight, Rect.Location.Y + Rect.Height - CornerRadius.BottomRight), CornerRadius.BottomRight, CornerRadius.BottomRight)); 98 new LineSegment { Point = new Point(Rect.Location.X + Rect.Width, Rect.Location.Y + Rect.Height - CornerRadius.BottomRight) }, 99 new LineSegment { Point = new Point(Rect.Location.X + Rect.Width - CornerRadius.BottomRight, Rect.Location.Y + Rect.Height) }, 126 float br = (float)CornerRadius.BottomRight;
Microsoft.Maui.Controls.Build.Tasks (1)
CompiledConverters\StrokeShapeTypeConverter.cs (1)
182 yield return Instruction.Create(OpCodes.Ldc_R8, cornerRadius.BottomRight);