如何打印窗体(Windows 窗体 .NET)

在开发过程中,通常需要打印 Windows 窗体的副本。 下面的代码示例演示如何使用 CopyFromScreen 方法打印当前窗体的副本。

示例

要运行示例代码,请使用以下设置将两个组件添加到窗体中:

Object Property\Event
按钮 Name Button1
Click Button1_Click
PrintDocument Name PrintDocument1
PrintPage PrintDocument1_PrintPage

单击 Button1 时,将运行以下代码。 该代码从窗体创建一个 Graphics 对象,并将其内容保存到名为 memoryImageBitmap 变量中。 会调用 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 安全性

若要运行此代码示例,必须有权访问与计算机一起使用的打印机。

另请参阅