分享
 
 
 

在C#中实现打印功能(C#中PrintDialog,PrintDocument的使用)

王朝c#·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

在C#中实现打印功能(C#中PrintDialog,PrintDocument的使用)

作者:邵令 2004-8-24 17:04:01

博客中国(Blogchina.com)

b41830c

在C#中使用PrintDialog可以很方便的实现程序的打印功能。

其步骤如下:

创建一个PrintDialog的实例。如下:

System.Windows.Forms.PrintDialog PrintDialog1=new PrintDialog ();

创建一个PrintDocument的实例.如下:

System.Drawing.Printing.PrintDocument docToPrint =

new System.Drawing.Printing.PrintDocument();

设置打印机开始打印的事件处理函数.函数原形如下:

void docToPrint_PrintPage(object sender,

System.Drawing.Printing.PrintPageEventArgs e)

将事件处理函数添加到PrintDocument的PrintPage事件中。

docToPrint.PrintPage+=new PrintPageEventHandler(docToPrint_PrintPage);

设置PrintDocument的相关属性,如:

PrintDialog1.AllowSomePages = true;PrintDialog1.ShowHelp = true;

把PrintDialog的Document属性设为上面配置好的PrintDocument的实例:

PrintDialog1.Document = docToPrint;

调用PrintDialog的ShowDialog函数显示打印对话框:

DialogResult result = PrintDialog1.ShowDialog();

根据用户的选择,开始打印:

if (result==DialogResult.OK)

{

docToPrint.Print();

}

例子如下:

使用时先创建PrintService类的实例,然后调用void StartPrint(Stream streamToPrint,string streamType)函数开始打印。其中streamToPrint是要打印的内容(字节流),streamType是流的类型(txt表示普通文本,image表示图像);

using System;

using System.Drawing.Printing;

using System.Windows.Forms;

using System.IO;

namespace EDImageSystem

{

/// <summary>

/// PrintService 的摘要说明。

/// </summary>

public class PrintService

{

public PrintService()

{

//

// TODO: 在此处添加构造函数逻辑

//

this.docToPrint.PrintPage+=new PrintPageEventHandler(docToPrint_PrintPage);

}//将事件处理函数添加到PrintDocument的PrintPage中

// Declare the PrintDocument object.

private System.Drawing.Printing.PrintDocument docToPrint =

new System.Drawing.Printing.PrintDocument();//创建一个PrintDocument的实例

private System.IO.Stream streamToPrint;

string streamType;

// This method will set properties on the PrintDialog object and

// then display the dialog.

public void StartPrint(Stream streamToPrint,string streamType)

{

this.streamToPrint=streamToPrint;

this.streamType=streamType;

// Allow the user to choose the page range he or she would

// like to print.

System.Windows.Forms.PrintDialog PrintDialog1=new PrintDialog ();//创建一个PrintDialog的实例。

PrintDialog1.AllowSomePages = true;

// Show the help button.

PrintDialog1.ShowHelp = true;

// Set the Document property to the PrintDocument for

// which the PrintPage Event has been handled. To display the

// dialog, either this property or the PrinterSettings property

// must be set

PrintDialog1.Document = docToPrint;//把PrintDialog的Document属性设为上面配置好的PrintDocument的实例

DialogResult result = PrintDialog1.ShowDialog();//调用PrintDialog的ShowDialog函数显示打印对话框

// If the result is OK then print the document.

if (result==DialogResult.OK)

{

docToPrint.Print();//开始打印

}

}

// The PrintDialog will print the document

// by handling the document’s PrintPage event.

private void docToPrint_PrintPage(object sender,

System.Drawing.Printing.PrintPageEventArgs e)//设置打印机开始打印的事件处理函数

{

// Insert code to render the page here.

// This code will be called when the control is drawn.

// The following code will render a simple

// message on the printed document

switch(this.streamType)

{

case "txt":

string text = null;

System.Drawing.Font printFont = new System.Drawing.Font

("Arial", 35, System.Drawing.FontStyle.Regular);

// Draw the content.

System.IO.StreamReader streamReader=new StreamReader(this.streamToPrint);

text=streamReader.ReadToEnd();

e.Graphics.DrawString(text,printFont,System.Drawing.Brushes.Black,e.MarginBounds.X,e.MarginBounds.Y);

break;

case "image":

System.Drawing.Image image=System.Drawing.Image.FromStream(this.streamToPrint);

int x=e.MarginBounds.X;

int y=e.MarginBounds.Y;

int width=image.Width;

int height=image.Height;

if((width/e.MarginBounds.Width)>(height/e.MarginBounds.Height))

{

width=e.MarginBounds.Width;

height=image.Height*e.MarginBounds.Width/image.Width;

}

else

{

height=e.MarginBounds.Height;

width=image.Width*e.MarginBounds.Height/image.Height;

}

System.Drawing.Rectangle destRect=new System.Drawing.Rectangle(x,y,width,height);

e.Graphics.DrawImage(image,destRect,0,0,image.Width,image.Height,System.Drawing.GraphicsUnit.Pixel);

break;

default:

break;

}

}

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有