标题:如何打印多页面
取消只看楼主
seasoul_my
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2006-7-8
 问题点数:0 回复次数:0 
如何打印多页面

假设第一页打印出一个黑色矩形
第二页打印出一个红色举行

我只能打印出第一页,第二页不止到如何处理

以下为我的代码
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();
}
}
}

搜索更多相关主题的帖子: 打印 页面 
2006-07-08 19:34



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-77271-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.117205 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved