방법: 폼에 텍스트 그리기
업데이트: 2007년 11월
이 예제에서는 폼에 텍스트를 그리는 방법을 보여 줍니다.
예제
private void DrawString()
{
System.Drawing.Graphics formGraphics = this.CreateGraphics();
string drawString = "Sample Text";
System.Drawing.Font drawFont = new System.Drawing.Font(
"Arial", 16);
System.Drawing.SolidBrush drawBrush = new
System.Drawing.SolidBrush(System.Drawing.Color.Black);
float x = 150.0f;
float y = 50.0f;
formGraphics.DrawString(drawString, drawFont, drawBrush, x, y);
drawFont.Dispose();
drawBrush.Dispose();
formGraphics.Dispose();
}
코드 컴파일
이 예제에는 다음 사항이 필요합니다.
Windows Forms 응용 프로그램 프로젝트
이벤트 처리기에서 DrawString() 메서드를 호출합니다. 예를 들어 폼에 Button을 추가하고 이 단추에 대한 click 이벤트 처리기에서 DrawString을 호출합니다.
강력한 프로그래밍
Font 및 Graphics 개체와 같이 시스템 리소스를 사용하는 개체에 대해서는 항상 Dispose를 호출해야 합니다.
다음 조건에서 예외가 발생합니다.
- Arial 글꼴이 설치되지 않은 경우