C#利用PrintDocument定制打印单据的小例子
脚本之家 / 编程助手:解决程序员“几乎”所有问题!
脚本之家官方知识库 → 点击立即使用
前言
本文是利用PrintDocument定制打印单据的小例子,仅供学习分享使用,如果不足之处,还请指正。
涉及知识点:
- PrintDocument :从 Windows 窗体应用程序打印时,定义一种可重用的可发送到打印机上的对象。
- PrintPreviewControl :表示 Windows 窗体应用程序打印预览的原始预览部分,没有任何对话框或按钮。
- Graphics :GDI+绘图对象
- PrinterSettings:设置打印机属性,如:设置属性Copies,可以设置打印份数,默认为1,
- PageSettings:指定应用于单页打印的设置
- DefaultPageSettings:PrintDocument的属性
- PrintPage事件:PrintDocument的事件,通过此事件来绘制需要打印的内容
- PaperSize:指定纸张大小
- 毫米和英寸的换算:打印机是以英寸为单位的,单据设置是以毫米为单位的,所以需要转换
效果图如下:
核心代码
关键代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Drawing.Printing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace DemoPrint { public partial class MainForm : Form { private int width_p = 200; //单位是mm private int height_p = 70; //单位是mm private int margin_lr = 2; //左右边距 private int margin_tb = 2; //上下边距 /// <summary> /// 需要打印的内容 /// </summary> public List<PrintInfo> PrintInfos { get ; set ; } private PrintHelper printHelper = new PrintHelper(); public MainForm() { InitializeComponent(); } private void MainForm_Load( object sender, EventArgs e) { InitInfo(); InitDocument(); } private void InitInfo() { PrinterSettings printSetting = new PrinterSettings(); printSetting.PrintRange = PrintRange.AllPages; int width_in = MM2Inch(width_p); int height_in = MM2Inch(height_p); PageSettings pageSetting = new PageSettings(printSetting); pageSetting.PaperSize = new PaperSize( "customer" ,width_in, height_in); int margin_lr_in = MM2Inch(margin_lr); int margin_tb_in = MM2Inch(margin_tb); pageSetting.Margins = new Margins(margin_lr_in, margin_lr_in, margin_tb_in, margin_tb_in); this .pdControl.DefaultPageSettings = pageSetting; } private void InitDocument() { List<PrintInfo> lstPrintInfos = new List<PrintInfo>(); PrintInfo p0 = new PrintInfo() { PrtType = PrintType.Table, PrtColor = Color.Brown, Row = int .Parse( this .txtRow.Text.Trim()), Column = int .Parse( this .txtColumn.Text.Trim()), Start = new Point( int .Parse( this .txtStart.Text.Trim( new char [] { '(' , ')' }).Split( ',' )[0]), int .Parse( this .txtStart.Text.Trim( new char [] { '(' , ')' }).Split( ',' )[1])), End = new Point( int .Parse( this .txtEnd.Text.Trim( new char [] { '(' , ')' }).Split( ',' )[0]), int .Parse( this .txtEnd.Text.Trim( new char [] { '(' , ')' }).Split( ',' )[1])) }; lstPrintInfos.Add(p0); printHelper.PrintInfos = lstPrintInfos; } /// <summary> /// 转换毫米到百分之一英寸 /// </summary> /// <param name="mm"></param> /// <returns></returns> private int MM2Inch( int mm) { return ( int )(mm * 100.0f / 25.4f); } /// <summary> /// 打印开始事件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void pdControl_BeginPrint( object sender, PrintEventArgs e) { } /// <summary> /// 打印事件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void pdControl_PrintPage( object sender, PrintPageEventArgs e) { Font font = new Font( "Arial" , 14f, FontStyle.Regular); Graphics g = e.Graphics; g.PageScale = 1; g.PageUnit = GraphicsUnit.Millimeter; //先画一个矩形 Pen lineColor = new Pen(Color.Black, 0.2f); g.FillRectangle(Brushes.Linen,0,0,width_p,height_p); printHelper.Print(g); } /// <summary> /// 打印结束事件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void pdControl_EndPrint( object sender, PrintEventArgs e) { } /// <summary> /// 打印 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnPrint_Click( object sender, EventArgs e) { //打印对话框 if ( this .ptDControl.ShowDialog() == DialogResult.OK) { this .pdControl.Print(); } } private void lblColor_Click( object sender, EventArgs e) { ColorDialog f = new ColorDialog(); if (f.ShowDialog() == DialogResult.OK) { this .lblColor.BackColor = f.Color; } } /// <summary> /// 刷新 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnRefresh_Click( object sender, EventArgs e) { List<PrintInfo> lstPrintInfos = new List<PrintInfo>(); //表格配置 PrintInfo p0 = new PrintInfo() { PrtType = PrintType.Table, PrtColor = Color.Brown, Row = int .Parse( this .txtRow.Text.Trim()), Column = int .Parse( this .txtColumn.Text.Trim()), Start = new Point( int .Parse( this .txtStart.Text.Trim( new char [] { '(' , ')' }).Split( ',' )[0]), int .Parse( this .txtStart.Text.Trim( new char [] { '(' , ')' }).Split( ',' )[1])), End = new Point( int .Parse( this .txtEnd.Text.Trim( new char [] { '(' , ')' }).Split( ',' )[0]), int .Parse( this .txtEnd.Text.Trim( new char [] { '(' , ')' }).Split( ',' )[1])) }; lstPrintInfos.Add(p0); //标题配置 PrintInfo p1 = new PrintInfo() { PrtType = PrintType.Text, PrtColor = this .lblColor.BackColor, Content = this .txtTitle.Text.Trim(), Size = int .Parse( this .txtSize.Text.Trim()), FontStyle = chkBold.Checked ? FontStyle.Bold : FontStyle.Regular, Start = new Point( int .Parse( this .txtLocation.Text.Trim( new char [] { '(' , ')' }).Split( ',' )[0]), int .Parse( this .txtLocation.Text.Trim( new char [] { '(' , ')' }).Split( ',' )[1])) }; lstPrintInfos.Add(p1); //内容 TextBox[] T = new TextBox[12] { T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12 }; TextBox[] L = new TextBox[12] { L1, L2, L3, L4, L5, L6, L7, L8, L9, L10, L11, L12 }; for ( int i = 0; i < 12; i++) { PrintInfo p = new PrintInfo() { PrtType = PrintType.Text, PrtColor = Color.Black, Content = T[i].Text.Trim(), Size = 12, FontStyle = FontStyle.Regular, Start = new Point( int .Parse(L[i].Text.Trim( new char [] { '(' , ')' }).Split( ',' )[0]), int .Parse(L[i].Text.Trim( new char [] { '(' , ')' }).Split( ',' )[1])) }; lstPrintInfos.Add(p); } //打印时间 PrintInfo p2 = new PrintInfo() { PrtType = PrintType.Text, PrtColor = this .lblColor.BackColor, Content = DateTime.Now.ToString( "yyyy-MM-dd HH:mm:ss" ), Size =11, FontStyle =FontStyle.Regular, Start = new Point(145,63) }; lstPrintInfos.Add(p2); printHelper.PrintInfos = lstPrintInfos; this .ppVControl.InvalidatePreview(); //刷新文档的预览,重新调用PrintDocument的Print方法 } } } |
源码链接
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。
微信公众号搜索 “ 脚本之家 ” ,选择关注
程序猿的那些事、送书等活动等着你
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 reterry123@163.com 进行投诉反馈,一经查实,立即处理!
相关文章
C# HttpClient 如何使用 Consul 发现服务
这篇文章主要介绍了C# HttpClient 如何使用 Consul 发现服务,帮助大家更好的理解和使用c#,感兴趣的朋友可以了解下2021-02-02C# System.TypeInitializationException 异常处理方案
这篇文章主要介绍了C# System.TypeInitializationException 异常处理方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2023-02-02
最新评论