打印图形 
 
将 PrintDocument 组件添加到窗体中。 
右击窗体并选择“查看代码”。 
在 PrintPage 事件处理程序中,使用 PrintPageEventArgs 类的 Graphics 属性指示打印机打印何种图形。 
在下面的示例中,使用事件处理程序在边框中创建一个蓝色的椭圆,其位置和尺寸如下:以 (100,150) 为起点,宽度和高度均为 250。 
 

this.printDocument1.PrintPage += new
 System.Drawing.Printing.PrintPageEventHandler
 (this.printDocument1_PrintPage);
  
 private void printDocument1_PrintPage(object sender, 
 System.Drawing.Printing.PrintPageEventArgs e)
 {
    e.Graphics.FillRectangle(Brushes.Blue, 
      new Rectangle(100, 150, 250, 250));
 }