摘要: 这个示例演示了如何进行一个最简单的打印工作,为此需要引入两个dll:System.Windows.Forms,System.Drawing /// <summary> /// 打印类 /// </summary> public class PrintService { public PrintService() { //创建一个PrintDialog的实例 System.Windows.Forms.PrintDialog dlg = new System.Windows.Forms.PrintDialog(); //创建一个PrintDocument的实例 System 阅读全文
posted @ 2010-05-25 21:18 正文 阅读(3018) 评论(6) 推荐(2) 编辑