3 implementations of FillRoundedRectangle
Microsoft.Maui.Graphics (3)
AbstractCanvas.cs (1)
172 public abstract void FillRoundedRectangle(float x, float y, float width, float height, float cornerRadius);
PictureCanvas.cs (1)
153 public void FillRoundedRectangle(float x, float y, float width, float height, float cornerRadius)
ScalingCanvas.cs (1)
170 public void FillRoundedRectangle(float x, float y, float width, float height, float cornerRadius)
4 references to FillRoundedRectangle
Microsoft.Maui.Graphics (4)
CanvasExtensions.cs (2)
70 target.FillRoundedRectangle((float)rect.X, (float)rect.Y, (float)rect.Width, (float)rect.Height, (float)cornerRadius); 75 target.FillRoundedRectangle(rect.X, rect.Y, rect.Width, rect.Height, cornerRadius);
PictureCanvas.cs (1)
155 _commands.Add(canvas => canvas.FillRoundedRectangle(x, y, width, height, cornerRadius));
ScalingCanvas.cs (1)
172 _canvas.FillRoundedRectangle(x * _scaleX, y * _scaleY, width * _scaleX, height * _scaleY, cornerRadius * _scaleX);