C#利用PrintDocument定制打印单据的小例子

 更新时间:2019年05月30日 09:35:51   作者:Alan.hsiang  
这篇文章主要给大家介绍了关于C#利用PrintDocument定制打印单据的小例子,文中通过示例代码介绍的非常详细,对大家学习或者使用C#具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧

脚本之家 / 编程助手:解决程序员“几乎”所有问题!
脚本之家官方知识库 → 点击立即使用

前言

本文是利用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方法
  }
 }
}

源码链接

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。

蓄力AI

微信公众号搜索 “ 脚本之家 ” ,选择关注

程序猿的那些事、送书等活动等着你

原文链接:https://www.cnblogs.com/hsiang/p/6921817.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 reterry123@163.com 进行投诉反馈,一经查实,立即处理!

相关文章

  • C# HttpClient 如何使用 Consul 发现服务

    C# HttpClient 如何使用 Consul 发现服务

    这篇文章主要介绍了C# HttpClient 如何使用 Consul 发现服务,帮助大家更好的理解和使用c#,感兴趣的朋友可以了解下
    2021-02-02
  • C#从命令行读取参数的方法

    C#从命令行读取参数的方法

    这篇文章主要介绍了C#从命令行读取参数的方法,实例分析了C#命令行读取参数的实现技巧与操作流程,需要的朋友可以参考下
    2015-04-04
  • C#编程总结(六)详解异步编程

    C#编程总结(六)详解异步编程

    本篇文章主要介绍了C#异步编程,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧。
    2016-12-12
  • C#中float的取值范围和精度分析

    C#中float的取值范围和精度分析

    这篇文章主要介绍了C#中float的取值范围和精度,较为详细的分析了float的取值范围与表示方法及精度等概念,有助于深入了解C#数据类型,需要的朋友可以参考下
    2014-11-11
  • c#实现网站监控查看是否正常示例

    c#实现网站监控查看是否正常示例

    这篇文章主要介绍了使用c#监控网站是否正常的功能示例,大家参考使用吧
    2014-01-01
  • Unity shader实现百叶窗特效

    Unity shader实现百叶窗特效

    这篇文章主要为大家详细介绍了Unity shader实现百叶窗特效,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-11-11
  • C# System.TypeInitializationException 异常处理方案

    C# System.TypeInitializationException 异常处理方案

    这篇文章主要介绍了C# System.TypeInitializationException 异常处理方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-02-02
  • C#实现创建标签PDF文件的示例代码

    C#实现创建标签PDF文件的示例代码

    标签PDF文件包含描述文档结构和各种文档元素顺序的元数据,是一种包含后端提供的可访问标记,管理阅读顺序和文档内容表示的逻辑结构的PDF文件。本文将用C#实现创建标签PDF文件,需要的可以参考一下
    2022-08-08
  • C# WinForm程序设计简单计算器

    C# WinForm程序设计简单计算器

    这篇文章主要为大家详细介绍了C# WinForm程序设计简单计算器,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-02-02
  • C#判断一个字符串是否是数字或者含有某个数字的方法

    C#判断一个字符串是否是数字或者含有某个数字的方法

    这篇文章主要介绍了C#判断一个字符串是否是数字或者含有某个数字的方法,本文给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
    2018-06-06

最新评论