양식 인쇄 방법(Windows Forms .NET)
개발 프로세스의 일부로, 일반적으로 Windows Form의 복사본을 인쇄하려고 할 것입니다. 다음 코드 예는 CopyFromScreen 메서드를 사용하여 현재 양식의 복사본을 인쇄하는 방법을 보여줍니다.
예시
예제 코드를 실행하려면 다음 설정을 사용하여 양식에 두 개의 구성 요소를 추가합니다.
Object | Property\Event | 값 |
---|---|---|
버튼 | Name |
Button1 |
Click |
Button1_Click |
|
PrintDocument | Name |
PrintDocument1 |
PrintPage |
PrintDocument1_PrintPage |
다음 코드는 Button1
을 클릭하면 실행됩니다. 이 코드는 양식에서 Graphics
개체를 만들고 해당 내용을 memoryImage
라는 Bitmap
변수에 저장합니다. PrintDocument.Print 메서드가 호출되어 PrintPage 이벤트를 불러옵니다. 인쇄 이벤트 처리기는 프린터 페이지의 Graphics
개체에 memoryImage
비트맵을 그립니다. 인쇄 이벤트 처리기 코드가 반환되면 페이지가 인쇄됩니다.
namespace Sample_print_win_form1
{
public partial class Form1 : Form
{
Bitmap memoryImage;
public Form1()
{
InitializeComponent();
}
private void Button1_Click(object sender, EventArgs e)
{
Graphics myGraphics = this.CreateGraphics();
Size s = this.Size;
memoryImage = new Bitmap(s.Width, s.Height, myGraphics);
Graphics memoryGraphics = Graphics.FromImage(memoryImage);
memoryGraphics.CopyFromScreen(this.Location.X, this.Location.Y, 0, 0, s);
printDocument1.Print();
}
private void PrintDocument1_PrintPage(
System.Object sender,
System.Drawing.Printing.PrintPageEventArgs e)
{
e.Graphics.DrawImage(memoryImage, 0, 0);
}
}
}
Public Class Form1
Dim memoryImage As Bitmap
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim myGraphics As Graphics = Me.CreateGraphics()
Dim s As Size = Me.Size
memoryImage = New Bitmap(s.Width, s.Height, myGraphics)
Dim memoryGraphics As Graphics = Graphics.FromImage(memoryImage)
memoryGraphics.CopyFromScreen(Me.Location.X, Me.Location.Y, 0, 0, s)
PrintDocument1.Print()
End Sub
Private Sub PrintDocument1_PrintPage(
ByVal sender As System.Object,
ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument1.PrintPage
e.Graphics.DrawImage(memoryImage, 0, 0)
End Sub
End Class
강력한 프로그래밍
다음 조건에서 예외가 발생합니다.
프린터에 액세스할 수 있는 권한이 없습니다.
프린터가 설치되어 있지 않습니다.
.NET 보안
이 코드 예제를 실행하려면 컴퓨터에서 사용하는 프린터에 액세스할 수 있는 권한이 있어야 합니다.
참고 항목
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET Desktop feedback