• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
擦肩没过
博客园    首页    新随笔    联系   管理    订阅  订阅
C#调用小票打印机

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Drawing.Printing;
namespace BNCheckItemsClient.FormC.Specimen
{
   
publicclass PrintSpecimenLabel
    {
        PrintDocument printDocument;
       
privateint _PrintPage =0;//当前打印页
         privateint _TotalPage =1;//总页数
         publicstring _PrinterName =string.Empty;// 打印机名称
        publicvoid DoPrint()
        {
           
try
            {
               
//准备数据
                PrepareData();
              
               
if (_TotalPage <=0)
                   
return;
               
//设置打印机
                PrinterSetup();
               
if (!string.IsNullOrEmpty(_PrinterName))
                {
                    printDocument.PrinterSettings.PrinterName
= _PrinterName;
                   
if (!printDocument.PrinterSettings.IsValid)
                    {
                       
thrownew Exception("The printer is not Valid");
                    }
                }
                printDocument.Print();
            }
           
catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
               
//throw;
            }
        }
       
privatevoid PrinterSetup()
        {
           
//设置打印机属性
            printDocument.PrinterSettings.PrinterName ="ZDesigner 888-TT";//设置打印机
            printDocument.DefaultPageSettings.PaperSize =new System.Drawing.Printing.PaperSize("SpecimenLabel",110, 180);//页面大小
            printDocument.DefaultPageSettings.Landscape =true;//横向打印
            printDocument.PrintPage +=new PrintPageEventHandler(printDocument_PrintPage);
         }
       
//在这里写打印的内容
        void printDocument_PrintPage(object sender, PrintPageEventArgs e)
        {
            Graphics g
= e.Graphics;
           
float leftMargin = 5f; //左边距
              SolidBrush myBrush =new SolidBrush(Color.Black);//刷子
              float yPosition = 5f;//行定位
            Font printFont =new Font("宋体", 20f, FontStyle.Bold);//设置字体
            g.DrawString("这是要打印的第一行内容",printFont, myBrush, leftMargin + 140f, 7f, new StringFormat());
            yPosition
+= printFont.GetHeight(g);//另起一行
              printFont =new Font("宋体", 10f, FontStyle.Bold);//改变字体
            g.DrawString("这是要打印的第二行内容", printFont, myBrush, leftMargin, yPosition, new StringFormat());
           
//如果要同时打印多个标签
              _PrintPage++;//页号
            if (_PrintPage < _TotalPage)
            {
                e.HasMorePages
=true;
            }
           
else
            {
                e.HasMorePages
=false;
            }
        }
    }
}

到打印机和传真文件夹-->右键-->服务器属性
添加了自己定义的纸类型 名称949W300H 宽9.49in,高3.00in

所以改了程序为

foreach(PaperSize ps in printDoc.PrinterSettings.PaperSizes)
{
 
if(ps.PaperName=="949W300H")
 {
  printDoc.PrinterSettings.DefaultPageSettings.PaperSize
=ps;
  printDoc.DefaultPageSettings.PaperSize
=ps;
 }
}

 


就可以了 似乎纸张只能从printDoc.PrinterSettings.PaperSizes中选择

 

posted on 2012-03-29 23:49  擦肩没过  阅读(3007)  评论(1)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3