winfrom项目的打印
自己可以下一个PDF打印机(例如下载64位office虚拟打印文档)
首先要添加控件
1、添加打印的选项卡,并命名为打印
2、点击打印选项卡,右击鼠标,选择选择项
using System;
using System.Xml;
using System.Collections;
using System.Data;
using System.Drawing;
using System.Drawing.Printing;
namespace PubLibrary
{
/// <summary>
/// PrinterClass 的摘要说明。
/// 需要两个控件
/// </summary>
public class PrinterClass
{
public int _CNCount = 15;//打印中文时换行
public int _ENCount = 10;//打印英文时换行
private SolidBrush drawBrush = new SolidBrush(Color.Black); //颜色
private ArrayList _ItemList = null; //所打印的字段列表信息
public PrinterClass()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
/// <summary>
/// 对所打印的字段列表信息进行初始化
/// </summary>
/// <param name="billName">所打印单证名称</param>
/// <param name="s_File">XML文件路径</param>
public void InitPrinter(string billName, string s_File)
{
this._ItemList = new ArrayList();
XmlDocument xDoc = new XmlDocument();
xDoc.Load(s_File);
XmlElement root = xDoc.DocumentElement;
XmlNode node = root.SelectSingleNode("/rootNode/subNode"); //打印单证名称列表节点
foreach (XmlNode billNode in node.ChildNodes)
{
string s_BillName = billNode.Attributes["name"].Value;
if (s_BillName == billName) //打印单名
{
foreach (XmlNode fieldNode in billNode.ChildNodes)
{
if (fieldNode.Attributes == null)
{
continue;
}
PrintItem pItem = new PrintItem();
try
{
pItem.s_Name = fieldNode.Attributes["name"].Value;
pItem.s_Color = fieldNode.Attributes["color"].Value;
pItem.i_Size = Convert.ToInt32(fieldNode.Attributes["size"].Value);
pItem.i_X = Convert.ToInt32(fieldNode.Attributes["pixX"].Value);
pItem.i_Y = Convert.ToInt32(fieldNode.Attributes["pixY"].Value);
pItem.bol_IsPrint = Convert.ToBoolean(fieldNode.Attributes["IsPrint"].Value);
//if (fieldNode.Attributes["value"] != null)
//{
// pItem.s_Value = fieldNode.Attributes["value"].Value;
//}
//--
this._ItemList.Add(pItem);
}
catch
{
MsgBox.ShowError(pItem.s_Name);
}
}
}
}
}
public void InitPrinterNew(string billName, string s_File)
{
this._ItemList = new ArrayList();
XmlDocument xDoc = new XmlDocument();
xDoc.Load(s_File);
XmlElement root = xDoc.DocumentElement;
XmlNode node = root.SelectSingleNode("/rootNode/subNode"); //打印单证名称列表节点
foreach (XmlNode billNode in node.ChildNodes)
{
string s_BillName = billNode.Attributes["name"].Value;
if (s_BillName == billName) //打印单名
{
foreach (XmlNode fieldNode in billNode.ChildNodes)
{
if (fieldNode.Attributes == null)
{
continue;
}
PrintItem pItem = new PrintItem();
try
{
pItem.s_Name = fieldNode.Attributes["name"].Value;
pItem.s_Color = fieldNode.Attributes["color"].Value;
pItem.i_Size = Convert.ToInt32(fieldNode.Attributes["size"].Value);
pItem.i_X = Convert.ToInt32(fieldNode.Attributes["pixX"].Value);
pItem.i_Y = Convert.ToInt32(fieldNode.Attributes["pixY"].Value);
pItem.bol_IsPrint = Convert.ToBoolean(fieldNode.Attributes["IsPrint"].Value);
if (fieldNode.Attributes["value"] != null)
{
pItem.s_Value = fieldNode.Attributes["value"].Value;
}
//--
this._ItemList.Add(pItem);
}
catch
{
MsgBox.ShowError(pItem.s_Name);
}
}
}
}
}
/// <summary>
/// 将打印字段列表信息一一打印出来
/// </summary>
/// <param name="e"></param>
public void Printer(System.Drawing.Printing.PrintPageEventArgs e)
{
Font drawFont = null;
for (int i = 0; i < this._ItemList.Count; i++)
{
PrintItem pI = (PrintItem)this._ItemList[i];
if (pI.bol_IsPrint)
{
//drawFont = new Font(string.Empty, pI.i_Size, FontStyle.Bold);
drawFont = new Font(pI.s_FontName, pI.i_Size, pI.fStye);
e.Graphics.DrawString(pI.s_Value.ToString(), drawFont, drawBrush, pI.i_X, pI.i_Y);
}
}
}
/// <summary>
/// 打印表格线条
/// </summary>
/// <param name="sP"></param>
/// <param name="eP"></param>
/// <param name="e"></param>
public void DrawLine(PrintItem sP, PrintItem eP, System.Drawing.Printing.PrintPageEventArgs e)
{
if (sP == null)
{
MsgBox.ShowError(sP.s_Name + "不存在!");
return;
}
if (eP == null)
{
MsgBox.ShowError(eP.s_Name + "不存在!");
return;
}
e.Graphics.DrawLine(new Pen(Brushes.Black, 1), new Point(sP.i_X, sP.i_Y), new Point(eP.i_X, eP.i_Y));
}
public void DrawLine(PrintItem sP, PrintItem eP, int LineBold, System.Drawing.Printing.PrintPageEventArgs e)
{
if (sP == null)
{
MsgBox.ShowError(sP.s_Name + "不存在!");
return;
}
if (eP == null)
{
MsgBox.ShowError(eP.s_Name + "不存在!");
return;
}
e.Graphics.DrawLine(new Pen(Brushes.Black, LineBold), new Point(sP.i_X, sP.i_Y), new Point(eP.i_X, eP.i_Y));
}
/// <summary>
/// 根据字段名称,获取该字段信息
/// </summary>
/// <param name="s_Name">字段名称</param>
/// <returns></returns>
public PrintItem getPrintItem(string s_Name)
{
PrintItem pI = null;
for (int i = 0; i < this._ItemList.Count; i++)
{
pI = (PrintItem)this._ItemList[i];
if (s_Name == pI.s_Name)
{
return pI;
}
}
return null;
}
/// <summary>
/// 获取换行后的字符串
/// </summary>
/// <param name="s_Text"></param>
/// <param name="i_Count">如果为中文则为15,英文则为10</param>
/// <param name="i_Width"></param>
/// <returns></returns>
public string GetPrintText(string s_Text, int i_Count, int i_Width)
{
string s_Result = string.Empty;
int i_Len = 0;
foreach (char c in s_Text)
{
s_Result += c.ToString();
i_Len++;
if (i_Len * i_Count > i_Width)
{
s_Result += "\r\n";
i_Len = 0;
}
}
return s_Result;
}
/// <summary>
/// 获取换行后的字符串
/// </summary>
/// <param name="s_Text"></param>
/// <param name="i_Count">如果为中文则为15,英文则为10</param>
/// <param name="i_Width"></param>
/// <returns></returns>
public string GetPrintTextSim(string s_Text, int i_Count, int i_Width)
{
string s_Result = string.Empty;
int i_Len = 0;
foreach (char c in s_Text)
{
s_Result += c.ToString();
i_Len++;
if (i_Len * i_Count > i_Width)
{
s_Result += "..";
break;
}
}
return s_Result;
}
/// <summary>
/// 打印表格字符
/// </summary>
/// <param name="sP"></param>
/// <param name="eP"></param>
/// <param name="e"></param>
public void DrawText(PrintItem pI, System.Drawing.Printing.PrintPageEventArgs e)
{
Font drawFont = null;
if (pI == null)
{
MsgBox.ShowError(pI.s_Name + "不存在!");
return;
}
if (pI == null)
{
MsgBox.ShowError(pI.s_Name + "不存在!");
return;
}
drawFont = new Font(string.Empty, pI.i_Size, FontStyle.Bold);
e.Graphics.DrawString(pI.s_Value.ToString(), drawFont, drawBrush, pI.i_X, pI.i_Y);
// drawFont = new Font(string.Empty, pI.i_Size, FontStyle.Bold);
//e.Graphics.DrawString((new Pen(Brushes.Black, 1), new Point(sP.i_X, sP.i_Y), new Point(eP.i_X, eP.i_Y));
}
/// <summary>
/// 获取换行后的字符串
/// </summary>
/// <param name="s_Text"></param>
/// <param name="eP"></param>
/// <param name="sP"></param>
/// <returns></returns>
public string GetPrintText(string s_Text, PrintItem eP, PrintItem sP, System.Drawing.Printing.PrintPageEventArgs e)
{
string s_Result = string.Empty;
string s_curRowText = string.Empty;
Font curFont = new Font(string.Empty, eP.i_Size, FontStyle.Bold);
int i_RowWidth = eP.i_X - sP.i_X;
int i_Position = 0;
foreach (char c in s_Text)
{
s_curRowText += c.ToString();
int i_Length = (int)e.Graphics.MeasureString(s_curRowText, curFont).Width;
if (i_Length > i_RowWidth)
{
s_Result += s_curRowText.Substring(0, i_Position) + "\r\n";
s_curRowText = c.ToString();
i_Position = 0;
}
i_Position++;
}
s_Result += s_curRowText;
return s_Result;
}
/// <summary>
/// 获取换行后的字符串
/// </summary>
/// <param name="s_Text"></param>
/// <param name="eP"></param>
/// <param name="sP"></param>
/// <returns></returns>
public string GetPrintText(string s_Text, int i_Width, System.Drawing.Printing.PrintPageEventArgs e)
{
string s_Result = string.Empty;
string s_curRowText = string.Empty;
Font curFont = new Font(string.Empty, 8, FontStyle.Bold);
int i_RowWidth = i_Width;
int i_Position = 0;
foreach (char c in s_Text)
{
s_curRowText += c.ToString();
int i_Length = (int)e.Graphics.MeasureString(s_curRowText, curFont).Width;
if (i_Length > i_RowWidth)
{
s_Result += s_curRowText.Substring(0, i_Position) + "\r\n";
s_curRowText = c.ToString();
i_Position = 0;
}
i_Position++;
}
s_Result += s_curRowText;
return s_Result;
}
public void ClearPrintItem()
{
for (int i = 0; i < this._ItemList.Count; i++)
{
PrintItem pI = (PrintItem)this._ItemList[i];
if (pI.bol_IsPrint)
{
pI.s_Value = string.Empty;
}
}
}
public void PrintImage(Image img, PrintItem pI, float w, float h, System.Drawing.Printing.PrintPageEventArgs e)
{
if (pI == null)
{
MsgBox.ShowError(pI.s_Name + "不存在!");
return;
}
//e.Graphics.DrawImageUnscaled(img, pI.i_X, pI.i_Y);
e.Graphics.DrawImage(img, pI.i_X, pI.i_Y, w, h);
}
/// <summary>
/// 获取格子的宽度
/// </summary>
/// <param name="sP"></param>
/// <param name="eP"></param>
/// <returns></returns>
public int GetCellWidth(PrintItem eP, PrintItem sP)
{
return eP.i_X - sP.i_X;
}
#region Ext test function
public bool _isChgPos = false;
public void PrinterEx(string itemName, System.Drawing.Printing.PrintPageEventArgs e)
{
Font drawFont = null;
for (int i = 0; i < this._ItemList.Count; i++)
{
PrintItem pI = (PrintItem)this._ItemList[i];
if ((pI.bol_IsPrint) && (pI.s_Name == itemName))
{
drawFont = new Font(string.Empty, pI.i_Size, FontStyle.Bold);
if (this._isChgPos)
e.Graphics.DrawString(pI.s_Value.ToString(), drawFont, drawBrush, pI.i_X, pI.realY);
else
e.Graphics.DrawString(pI.s_Value.ToString(), drawFont, drawBrush, pI.i_X, pI.i_Y);
break;
}
}
}
#endregion
}
/// <summary>
/// 打印信息
/// </summary>
public class PrintItem
{
public string s_Name = string.Empty; //字段名称
public string s_Value = string.Empty;//字段值
public string s_Color = string.Empty;//颜色
public int i_Size = -1;//字体大小
public int i_X = -1; //位置坐标X值
public int i_Y = -1; //位置会标Y值
// public int realX = -1;
public int realY = -1;
public bool bol_IsPrint = true; //是否将该字段打印出来
public string s_FontName = string.Empty; //字体名称
public FontStyle fStye = FontStyle.Bold; //字体风格
}
}
winfrom项目的打印的更多相关文章
- web项目局部打印
window.print()方法是打印整个body,若想打印局部区域,网上出现了各种解决办法,我觉得都挺好的.我最推荐jquery.PrintArea.js插件形式 点击上述链接首先下载下来,我的是版 ...
- flutter 项目中打印原生安卓的log信息
因为项目的需要 在flutter 中调用安卓的方法 再用安卓的方法去调用c写的so包 方法 如果当前项目下面没有android stduio 自带的logcat 那就利用下面的方法 在安卓代码中引入 ...
- Java实验项目二——打印某年某月日历
Program:打印万年历(输入年份,月份,输出该月的日历,已知1900年1月1日是星期一), 要 求: (1)编写一个方法判断闰年: (2)编写一个方法判断某年某月有多少天: (3)编写一个方法计算 ...
- OA项目之打印
打印 若此页有一个打印按钮: <input type="button" id="btnPrint" class="button_sm7" ...
- [置顶] 如何vs在cocos2dx项目中打印中文
一开始不是很理解,查了半天资料,终于找到解决方法,但是有部分中文还是不能打印出来,如 会出现部分的中文, 一开始都是问号的解决方法是 点击高级保存选项 设置成Unicode(UTF-8无签名) 这样就 ...
- 适用于vue项目的打印插件(转载)
出处:https://www.cnblogs.com/lvyueyang/p/9847813.html // 使用时请尽量在nickTick中调用此方法 //打印 export default (re ...
- 适用于vue项目的打印插件
此方法只适用于现代浏览器,IE10以下就别用了 // 使用时请尽量在nickTick中调用此方法 //打印 export default (refs, cb) => { let cloneN i ...
- springboot项目大量打印debug日志问题
目前,java下应用最广泛的日志系统主要就是两个系列: log4j和slf4j+logback . 其中,slf4j只包含日志的接口,logback只包括日志的具体实现,两者加起来才是一个完整的日志系 ...
- 开源免费且稳定实用的.NET PDF打印组件itextSharp(.NET组件介绍之八)
在这个.NET组件的介绍系列中,受到了很多园友的支持,一些园友(如:数据之巅. [秦时明月]等等这些大神 )也给我提出了对应的建议,我正在努力去改正,有不足之处还望大家多多包涵.在传播一些简单的知识的 ...
随机推荐
- rkhunter和chkrootkit
今天继续检查我的Linux,所以下来rkhunter和chkrootkit一个一个来,下面只记录命令,少些说明不截图了. 1.rkhunter #cd /temp #wget http://downl ...
- https证书自签
https http over ssl = https 443/tcp ssl: v3 tls: ...
- 3.javascript转换日期字符串为Date对象
js中文网 阮一峰 1.求format“xxxx年xx月xx日 xx:xx”类型的两个日期天数差 var start = "2017年09月17日 13:51"; var end ...
- Linux系统如何查看版本信息?
查看版本号 我在Ubuntu下做测试 1 命令行执行 cat /etc/issue (切记cat后要空一格)即可看到版本信息. 2 登录linux,在终端输入 cat /proc/version ...
- HDFS源码分析四-HDFS Client
4. HDFS Client ( 未完待续 ) 目录: 4.1 认识 DFSClient ( 未完待续 ) 4.2 输入流 ( 未完待续 ) 4.3 输出流 ( 未完待续 ) 4.4 Distribu ...
- python序列化之pickle,json,shelve
模块 支持方法 说明 json dumps/dump loads/load 只能处理基本数据类型: 用于多种语言间的数据传输: pickle dumps/dump loads/load 支持pytho ...
- TypeScript完全解读(26课时)_17.装饰器
实验性的特性,需要在tslint里面把这项设置为true 作用域类的声明方法.访问符.属性和参数上 使用@符号加一个名字来定义,名字必须是一个函数,或者求值后是一个函数 装饰器工厂,setPro当做一 ...
- jQuery EasyUI API 中文文档 - Tree树使用介绍
用 $.fn.tree.defaults 重写了 defaults. 依赖 draggable droppable 用法 Tree 能在 <ul> 元素里定义,此标记可以定义为叶节点和子节 ...
- web前端_Vue框架_设置浏览器上方的标题和图标
在创建Vue项目时一般会用默认的项目标题和图标,如下图所示: 不是很美观也可能不符合项目的需求,所以有时候就需要改变项目在浏览器上方的标签名称或者图标. 找到项目根目录的index.html,如图: ...
- html扩展调用qq邮箱
总体流程:qq邮箱->设置->账户->邮我(使用邮我) over!over!over!