假设第一页打印出一个黑色矩形
第二页打印出一个红色举行
我只能打印出第一页,第二页不止到如何处理
以下为我的代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace 打印测试
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
//第一页的矩形
e.Graphics.DrawRectangle(new Pen(Brushes.Black), new Rectangle(0, 0, 200, 200));
//第二页的矩形
e.Graphics.DrawRectangle(new Pen(Brushes.Bisque), new Rectangle(0, 0, 400, 400));
}
private void button1_Click(object sender, EventArgs e)
{
this.printPreviewDialog1.ShowDialog();
}
}
}