C#2.0 数字“0”是有一道斜线,打印虚线,Pos打印

1 using  System;
  2 using  System.Collections.Generic;
  3 using  System.ComponentModel;
  4 using  System.Data;
  5 using  System.Drawing;
  6 using  System.Drawing.Drawing2D;
  7 using  System.Text;
  8 using  System.Windows.Forms;
  9 using  System.Data.SqlClient;
 10 using  System.Drawing.Printing;
 11
 12 namespace  printpos
 13  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park {
 14  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park      /**/ ///   <summary>
 15      ///  打印POS样式
 16      ///  涂聚文  geovindu@163.com 
 17      ///   </summary>
 18      public   partial   class  FrmPrintPos : Form
 19  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park      {
 20          public  FrmPrintPos()
 21  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park          {
 22             InitializeComponent();
 23         }
 24  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park          /**/ ///   <summary>
 25          ///  打印
 26          ///   </summary>
 27          ///   <param name="sender"></param>
 28          ///   <param name="e"></param>
 29          private   void  btnPrint_Click( object  sender, EventArgs e)
 30  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park          {
 31              if  (MessageBox.Show( " 是否打印预览? " " 打印预览 " , MessageBoxButtons.YesNo, MessageBoxIcon.Question)  ==  DialogResult.Yes)
 32  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park              {
 33                 PrintDialog MyPrintDialog  =   new  PrintDialog();
 34                 MyPrintDocument.PrinterSettings  =  MyPrintDialog.PrinterSettings;
 35                 MyPrintDocument.DefaultPageSettings  =  MyPrintDialog.PrinterSettings.DefaultPageSettings;
 36                 MyPrintDocument.DefaultPageSettings.Margins  =   new  Margins( 40 40 40 40 );
 37                 PrintPreviewDialog MyPrintPreviewDialog  =   new  PrintPreviewDialog();
 38                 MyPrintPreviewDialog.Document  =  MyPrintDocument;
 39                 MyPrintPreviewDialog.ShowDialog();
 40
 41
 42             }
 43              else
 44  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park              {
 45                  this .MyPrintDocument.Print(); // 直接打印
 46             }
 47         }
 48  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park          /**/ ///   <summary>
 49          ///  打印内容设置
 50          ///  涂聚文 geovindu@163.com 
 51          ///  缔友计算机信息技术有限公司  www.dupcit.com
 52          ///   </summary>
 53          ///   <param name="sender"></param>
 54          ///   <param name="e"></param>
 55          private   void  MyPrintDocument_PrintPage( object  sender, PrintPageEventArgs e)
 56  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park  	C2.0 数字“0”是有一道斜线,打印虚线,Pos打印 - geovindu - Geovin Du Dream Park          {
 57              // 文字右对齐
 58             StringFormat sf  =   new  StringFormat(StringFormatFlags.DirectionRightToLeft);
 59              // 划虚线
 60             Pen ftqGoal  =   new  Pen(Color.Black,  1 );
 61             ftqGoal.DashStyle  =  System.Drawing.Drawing2D.DashStyle.Dot;
 62              // StringAlignment.Center;或者:StringAlignment.Far;或者:StringAlignment.Near; 
 63             Brush brush  =   new  SolidBrush(Color.Black); // 画刷 
 64             Brush brred  =   new  SolidBrush(Color.Red); //
 65             Font titleFont  =   new  Font( " 黑体 " 24 , FontStyle.Bold); // 标题字体 
 66             Font font  =   new  Font( " Consolas " 8 , FontStyle.Regular); //数字0字有斜线的字体: WST_Ital,  01 DigitGraphics , 00 Starmap Truetype,Consolas,
 67              // Font font = new Font("WST_Engl", 8); // 正文字体 
 68             Font headerFont  =   new  Font( " 黑体 " 12 , FontStyle.Bold); // 列名标题 
 69             Font footerFont  =   new  Font( " Arial " 8 ); // 页脚显示页数的字体 
 70             Font upLineFont  =   new  Font( " Arial " 9 , FontStyle.Bold); // 当header分两行显示的时候,上行显示的字体。 
 71             Font underLineFont  =   new  Font( " Arial " 8 ); // 当header分两行显示的时候,下行显示的字
 72              //
 73             e.Graphics.DrawLine(ftqGoal,  1 5 250 5 );
 74              //
 75             e.Graphics.DrawString( " 欢迎光临缔友书城南山城 " , font, brush,  45 55 );
 76             //
 77             e.Graphics.DrawString( " 若有质量问题三日内凭票退换 " , font, brush,  40 70 );
 78              //
 79             e.Graphics.DrawString( " 95925 " , font, brush,  1 85 );
 80             e.Graphics.DrawString( " #20000000372 " , font, brush,  250 85 , sf);
 81              // 名称,单价,数量,金额
 82             e.Graphics.DrawString( " 名称 " , font, brush,  1 100 );
 83             e.Graphics.DrawString( " 单价 " , font, brush,  60 100 );
 84             e.Graphics.DrawString( " 数量 " , font, brush,  120 100 );
 85             e.Graphics.DrawString( " 金额 " , font, brush,  220 100 );
 86              // 1
 87             e.Graphics.DrawString( " 装订夹 " , font, brush,  1 115 );
 88             e.Graphics.DrawString( " 19.00 " , font, brush,  60 115 );
 89             e.Graphics.DrawString( " 200 " , font, brush,  120 115 );
 90             e.Graphics.DrawString( " 3800 " , font, brush,  250 115 , sf);
 91              // 2
 92             e.Graphics.DrawString( " 不锈钢夹 " , font, brush,  1 130 );
 93             e.Graphics.DrawString( " 98.00 " , font, brush,  60 130 );
 94             e.Graphics.DrawString( " 90 " , font, brush,  120 130 );
 95             e.Graphics.DrawString( " 8820.00 " , font, brush,  250 130 , sf);
 96              // 3
 97             e.Graphics.DrawString( " 固体胶 " , font, brush,  1 145 );
 98             e.Graphics.DrawString( " 18.50 " , font, brush,  60 145 );
 99             e.Graphics.DrawString( " 60 " , font, brush,  120 145 );
100             e.Graphics.DrawString( " 1110.00 " , font, brush,  250 145 , sf);
101              // 4
102             e.Graphics.DrawString( " 档案盒 " , font, brush,  1 160 );
103             e.Graphics.DrawString( " 4.80 " , font, brush,  60 160 );
104             e.Graphics.DrawString( " 265 " , font, brush,  120 160 );
105             e.Graphics.DrawString( " 1272 " , font, brush,  250 160 , sf);
106              // 划虚线
107              // Pen ftqGoal = new Pen(Color.Black, 1);
108              // ftqGoal.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
109             e.Graphics.DrawLine(ftqGoal,  1 182 250 182 );
110              // 小计
111             e.Graphics.DrawString( " (小计) " , font, brush,  1 190 );
112             e.Graphics.DrawString( " 4项 " , font, brush,  60 190 );
113             e.Graphics.DrawString( " 615件 " , font, brush,  120 190 );
114             e.Graphics.DrawString( " 15000.00 " , font, brush,  250 190 , sf);
115              // 实收
116             e.Graphics.DrawString( " 实收 " , font, brush,  1 205 );
117             e.Graphics.DrawString( " 15000.00 " , font, brush,  250 205 , sf);
118              // 找回
119             e.Graphics.DrawString( " 找回 " , font, brush,  1 220 );
120             e.Graphics.DrawString( " 0.00 " , font, brush,  250 220 , sf);
121              // 划虚线
122             //  Pen ftqGoal = new Pen(Color.Black, 1);
123              // ftqGoal.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
124             e.Graphics.DrawLine(ftqGoal,  1 242 250 242 );
125              //
126             e.Graphics.DrawString( " 2503 " , font, brush,  1 250 );
127             e.Graphics.DrawString( " 2008年11月19日  10:48 " , font, brush,  250 250 , sf);
128              //
129             e.Graphics.DrawString( " 一次消费满50元,免费停车2小时(当日有效) " , font, brush,  1 265 );
130              //
131             e.Graphics.DrawString( " 免费停车票到一楼总服务台领取 " , font, brush,  25 280 );
132              //
133             e.Graphics.DrawString( " WWW.DUPCIT.COM 客户服务热线:86369385 " , font, brush,  1 295 );
134
135         }
136     }
137 }
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值