Browse Source

Fix typo in DrawingContext.cs (#13811)

pull/13820/head
风雨声 3 years ago
committed by GitHub
parent
commit
81f6432bc6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Avalonia.Base/Media/DrawingContext.cs

2
src/Avalonia.Base/Media/DrawingContext.cs

@ -123,7 +123,7 @@ namespace Avalonia.Media
/// <param name="boxShadows">Box shadow effect parameters</param>
/// <remarks>
/// The brush and the pen can both be null. If the brush is null, then no fill is performed.
/// If the pen is null, then no stoke is performed. If both the pen and the brush are null, then the drawing is not visible.
/// If the pen is null, then no stroke is performed. If both the pen and the brush are null, then the drawing is not visible.
/// </remarks>
public void DrawRectangle(IBrush? brush, IPen? pen, Rect rect,
double radiusX = 0, double radiusY = 0,

Loading…
Cancel
Save