ControlPaint::DrawSizeGrip Method (Graphics^, Color, Int32, Int32, Int32, Int32)

 

Draws a size grip on a form with the specified bounds and background color and on the specified graphics surface.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
static void DrawSizeGrip(
	Graphics^ graphics,
	Color backColor,
	int x,
	int y,
	int width,
	int height
)

Parameters

graphics
Type: System.Drawing::Graphics^

The Graphics to draw on.

backColor
Type: System.Drawing::Color

The Color of the background used to determine the colors of the size grip.

x
Type: System::Int32

The x-coordinate of the upper left corner of the size grip.

y
Type: System::Int32

The y-coordinate of the upper left corner of the size grip.

width
Type: System::Int32

The width of the size grip.

height
Type: System::Int32

The height of the size grip.

The backColor parameter is used to calculate the color of the size grip so that it is always visible against the background.

When you define a sizable window, you can include a size grip. A size grip is a special handle that enables the user to resize a window.

.NET Framework
Available since 1.1
Return to top
Show: