방법: 폼에 채워진 사각형 그리기
업데이트: 2007년 11월
이 예제에서는 폼에 채워진 사각형을 그리는 방법을 보여 줍니다.
예제
System.Drawing.SolidBrush brush1 =
new System.Drawing.SolidBrush(System.Drawing.Color.Red);
System.Drawing.Graphics formGraphics = this.CreateGraphics();
formGraphics.FillRectangle(brush1, new System.Drawing.Rectangle(0,0,200,300));
brush1.Dispose();
formGraphics.Dispose();
코드 컴파일
이 예제에는 다음 사항이 필요합니다.
- formGraphics라는 폼이 있는 Windows Forms 응용 프로그램 프로젝트
코드는 Form 클래스 범위 내에 있어야 합니다. this는 폼의 인스턴스를 나타냅니다.
강력한 프로그래밍
Brush 및 Graphics 개체와 같이 시스템 리소스를 사용하는 개체에 대해서는 항상 Dispose를 호출해야 합니다.