學習.Net(c#)列印–多頁列印

來源:互聯網
上載者:User
    如果要實現多頁列印,就要使用PrintPageEventArgs類的HasMorePages屬性。

我們對之前的代碼作如下變更:
    增加PrintDocument的BeginPrint和EndPrint事件。BeginPrint事件用於得到被列印的內容。EndPrint用於釋放資源。 PrintDocument的PrintPage事件中實現分頁。
    基中:BeginPrint的事件方法在PrintPage事件方法前被呼叫。
           PintPage的事件方法在EndPrintPage事件方法前被呼叫。
           EndPrint事件方法最後被呼叫,EndPrint事件方法結束後會回到PrintDocument.Print()方法中,執行列印。

其過程如下:
    1、實例化列印文檔
    2、訂閱事件(訂閱BeginPrint事件,用於得到被列印的內容;PinrtPage事件,用於繪製各個頁內容; EndPrint事件,用於釋放資源)
    3、調用BeginPrint事件的方法,得到列印內容
    4、調用PinrtPage事件的方法,繪制多個列印頁面,並根據判斷,設置是否進行多頁列印
    5、調用EndPrint事件的方法,釋放資源,完成後開始列印

代碼如下:

using System.IO;
using System.Drawing.Printing;

namespace SimpleEditor
{
    public partial class SimpleEditorForm : Form
    {
        private string filename = "Untitled";

        //1、實例化列印文檔
        PrintDocument pdDocument = new PrintDocument();        

        private string[] lines;
        private int linesPrinted;
        public SimpleEditorForm()
        {
            InitializeComponent();

            //2、訂閱事件

            //訂閱PinrtPage事件,用於繪製各個頁內容
            pdDocument.PrintPage += new PrintPageEventHandler(OnPrintPage);
            //訂閱BeginPrint事件,用於得到被列印的內容
            pdDocument.BeginPrint += new PrintEventHandler(pdDocument_BeginPrint);
            //訂閱EndPrint事件,用於釋放資源
            pdDocument.EndPrint += new PrintEventHandler(pdDocument_EndPrint);
        }

        private void OnFilePrint(object sender, EventArgs e)
        {
            try
            {
                //調用列印
                pdDocument.Print();

                /*
                 * PrintDocument對象的Print()方法在PrintController類的幫助下,執行PrintPage事件。
                 */
            }
            catch (InvalidPrinterException ex )
            {
                MessageBox.Show(ex.Message, "Simple Editor", MessageBoxButtons.OK, MessageBoxIcon.Error);
                throw;
            }
        }

        /// <summary>
        /// 3、得到列印內容
        /// 每個列印任務衹調用OnBeginPrint()一次。
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void pdDocument_BeginPrint(object sender, PrintEventArgs e)
        {
            char[] param ={ '\n' };
            lines = textBoxEdit.Text.Split(param);

            int i = 0;
            char[] trimParam ={ '\r' };
            foreach (string s in lines)
            {
                lines[i++] = s.TrimEnd(trimParam);
            }
        }

        /// <summary>
        /// 4、繪制多個列印頁面
        /// printDocument的PrintPage事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void OnPrintPage(object sender, PrintPageEventArgs e)
        {
            /*
             * 得到TextBox中每行的字串數組
             * \n換行
             * \r回車
             */

            int x = 20;
            int y = 20;
            while (linesPrinted<lines.Length)
            {
                //繪製要列印的頁面
                e.Graphics.DrawString(lines[linesPrinted++], new Font("Arial", 10), Brushes.Black, x, y);

                y += 55;

                //判斷超過一頁時,允許進行多頁列印
                if (y >= e.PageBounds.Height - 80)
                {
                    //允許多頁列印
                    e.HasMorePages = true;

                    /*
                     * PrintPageEventArgs類的HaeMorePages屬性為True時,通知控制項器,必須再次調用OnPrintPage()方法,列印一個頁面。
                     * PrintLoopI()有一個用於每個要列印的頁面的序例。如果HasMorePages是False,PrintLoop()就會停止。
                     */
                    return;
                }
            }

            linesPrinted = 0;
            //繪制完成後,關閉多頁列印功能
            e.HasMorePages = false;

        }

        /// <summary>  
        ///5、EndPrint事件,釋放資源
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void pdDocument_EndPrint(object sender, PrintEventArgs e)
        {
           //變量Lines佔用和引用的字串數組,現在釋放
            lines = null;
        }
    }
}

這樣就完成了多頁列印功能。

我們雖然設置了多面列印,可是列印機無法設定頁面邊距等內容。那我們如何設定列印格式呢?

請看下頁:學習.Net(c#)列印--頁面設置

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.