打印系统开发(18)——C# 直接打印指定路径文件 + 可选择指定打印机


        public void PrinteTicketWithPath(string path)
        {
                try 
            {
                streamToPrint = new StreamReader (path);
                try 
                {
                    printFont = new Font("Arial", 10);
                    PrintDocument pd = new PrintDocument();
                    if (core.PrinterTicket != null)
                    {
                        pd.PrinterSettings.PrinterName = core.PrinterTicket;
                    }
                    pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
                    // Print the document.
                    pd.Print();
                } 
                finally 
                {
                    streamToPrint.Close() ;
                }
            } 
            catch(Exception ex) 
            { 
                MessageBox.Show(ex.Message);
            }
        }
 
        // The PrintPage event is raised for each page to be printed.
        private void pd_PrintPage(object sender, PrintPageEventArgs ev)
        {
            float linesPerPage = 0;
            float yPos = 0;
            int count = 0;
            float leftMargin = ev.MarginBounds.Left;
            float topMargin = ev.MarginBounds.Top;
            String line = null;
 
            // Calculate the number of lines per page.
            linesPerPage = ev.MarginBounds.Height /
                printFont.GetHeight(ev.Graphics);
 
            // Iterate over the file, printing each line.
            while (count < linesPerPage &&
                ((line = streamToPrint.ReadLine()) != null))
            {
                yPos = topMargin + (count * printFont.GetHeight(ev.Graphics));
                ev.Graphics.DrawString(line, printFont, Brushes.Black,
                    leftMargin, yPos, new StringFormat());
                count++;
            }
 
            // If more lines exist, print another page.
            if (line != null)
            {
                ev.HasMorePages = true;
            }
            else
            {
                ev.HasMorePages = false;
            } 
        }

core 是个获取本地属性的类, 包括可以读取可用打印机的名字

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值