DrawingContext::DrawRoundedRectangle Method (Brush^, Pen^, Rect, Double, Double)

 

Draws a rounded rectangle with the specified Brush and Pen.

Namespace:   System.Windows.Media
Assembly:  PresentationCore (in PresentationCore.dll)

public:
virtual void DrawRoundedRectangle(
	Brush^ brush,
	Pen^ pen,
	Rect rectangle,
	double radiusX,
	double radiusY
) abstract

Parameters

brush
Type: System.Windows.Media::Brush^

The brush used to fill the rectangle.

pen
Type: System.Windows.Media::Pen^

The pen used to stroke the rectangle.

rectangle
Type: System.Windows::Rect

The rectangle to draw.

radiusX
Type: System::Double

The radius in the X dimension of the rounded corners. This value will be clamped to the range of 0 to Width/2.

radiusY
Type: System::Double

The radius in the Y dimension of the rounded corners. This value will be clamped to a value between 0 to Height/2.

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.

.NET Framework
Available since 3.0
Return to top
Show: