다음을 통해 공유


ControlPaint.DrawSizeGrip 메서드

정의

폼에 크기 조정 그립을 그립니다.

오버로드

DrawSizeGrip(Graphics, Color, Rectangle)

지정된 그래픽 표면에 지정된 범위 및 배경색으로 폼의 크기 조정 그립을 그립니다.

DrawSizeGrip(Graphics, Color, Int32, Int32, Int32, Int32)

지정된 그래픽 표면에 지정된 범위 및 배경색으로 폼의 크기 조정 그립을 그립니다.

DrawSizeGrip(Graphics, Color, Rectangle)

지정된 그래픽 표면에 지정된 범위 및 배경색으로 폼의 크기 조정 그립을 그립니다.

public:
 static void DrawSizeGrip(System::Drawing::Graphics ^ graphics, System::Drawing::Color backColor, System::Drawing::Rectangle bounds);
public static void DrawSizeGrip (System.Drawing.Graphics graphics, System.Drawing.Color backColor, System.Drawing.Rectangle bounds);
static member DrawSizeGrip : System.Drawing.Graphics * System.Drawing.Color * System.Drawing.Rectangle -> unit
Public Shared Sub DrawSizeGrip (graphics As Graphics, backColor As Color, bounds As Rectangle)

매개 변수

graphics
Graphics

그릴 Graphics입니다.

backColor
Color

크기 조정 그립의 색을 결정하는 데 사용되는 배경의 Color입니다.

bounds
Rectangle

크기 조정 그립의 크기를 나타내는 Rectangle입니다.

설명

backColor 매개 변수는 항상 배경에 표시되도록 크기 그립의 색을 계산하는 데 사용됩니다.

크기 조정 가능한 창을 정의할 때 크기 그립을 포함할 수 있습니다. 크기 그립은 사용자가 창의 크기를 조정할 수 있는 특수 핸들입니다.

추가 정보

적용 대상

DrawSizeGrip(Graphics, Color, Int32, Int32, Int32, Int32)

지정된 그래픽 표면에 지정된 범위 및 배경색으로 폼의 크기 조정 그립을 그립니다.

public:
 static void DrawSizeGrip(System::Drawing::Graphics ^ graphics, System::Drawing::Color backColor, int x, int y, int width, int height);
public static void DrawSizeGrip (System.Drawing.Graphics graphics, System.Drawing.Color backColor, int x, int y, int width, int height);
static member DrawSizeGrip : System.Drawing.Graphics * System.Drawing.Color * int * int * int * int -> unit
Public Shared Sub DrawSizeGrip (graphics As Graphics, backColor As Color, x As Integer, y As Integer, width As Integer, height As Integer)

매개 변수

graphics
Graphics

그릴 Graphics입니다.

backColor
Color

크기 조정 그립의 색을 결정하는 데 사용되는 배경의 Color입니다.

x
Int32

크기 조정 그립의 왼쪽 위 모퉁이의 x좌표입니다.

y
Int32

크기 조정 그립의 왼쪽 위 모퉁이의 y좌표입니다.

width
Int32

크기 조정 그립의 너비입니다.

height
Int32

크기 조정 그립의 높이입니다.

설명

backColor 매개 변수는 항상 배경에 표시되도록 크기 그립의 색을 계산하는 데 사용됩니다.

크기 조정 가능한 창을 정의할 때 크기 그립을 포함할 수 있습니다. 크기 그립은 사용자가 창의 크기를 조정할 수 있는 특수 핸들입니다.

추가 정보

적용 대상