C#打印和C#打印預覽的實現的三大部分:頁面設置、打印預覽、打印具體用到的類和屬性事件都是什麼內容呢?那麼本文就向你介紹C#打印和C#打印預覽的實現具體事宜。html
咱們談到C#打印和C#打印預覽的實現其中主要就是包括:頁面設置、打印預覽、打印三大部分。打印的原理是:生成mdi文件,系統碰到mdi的時候會自動以打印的方式處理。因此,無論用什麼模板,什麼方式;能在PrintPage事件處理中,生成一張要打印內容的圖片就OK了!主要的支持類都包括在命名空間System.Drawing.Printing中,在程序集System.Drawing.dll中實現。C#打印和C#打印預覽的實現主要經過PrintDocument類來完成,另外還包括幾個輔助類:PrintDialog(打印對話框)、PrintPreviewDialog(打印預覽對話框)、PageSetupDialog。程序員
PrintDocument類是實現打印和打印預覽的中心類,實際的打印操做是經過這個類來完成的。 使用這個類進行打印的操做過程:windows
1)建立類實例 PrintDocument printDt = new PrintDocument();app
2)設置類實例的屬性函數
3)爲該類的打印事件添加事件處理函數字體
4)調用該類的Print函數進行打印。this
打印:printDt.Print();spa
在windows應用程序中文檔的打印是一項很是重要的功能,在之前一直是一個很是複雜的工做,Microsoft .Net Framework的打印功能都以組件的方式提供,爲程序員提供了很大的方便,可是這幾個組件的使用仍是很複雜的,有必要解釋一下。
打印操做一般包括如下四個功能:
1 打印設置 設置打印機的一些參數,好比更改打印機驅動程序等;
2 頁面設置 設置頁面大小紙張類型等
3 打印預覽 相似於word中的打印預覽
4 打印code
實現打印功能的核心是PrintDocument類這個類屬於System.Drawing.Printing名字空間這個類封裝了當前的打印設置頁面設置以及全部的與打印有關的事件和方法
這個類包括如下幾個屬性,事件和方法
一、PrinterSettings 屬性
存放打印機的設置信息,這個屬性不須要程序員設置,由於它是由打印對話框獲取的.
二、PrintCountroller 屬性
控制打印過程
三、DefaultPageSettings 屬性
存放頁面設置信息,打印紙大小方向等,也不須要程序員設置,由於它是由頁面設置對話框獲取的.
四、DocumentName 屬性
指定文檔名稱,出如今打印機狀態窗口中 orm
1。 BeginPrint事件
在打印以前發出
2. PrintPage事件
每打印一頁是發出,事件接受一個PrintPageEventArgs參數該參數封裝了打印相關的信息
PrintPageEventArgs參數有不少重要的屬性
1 Cancel 取消打印
2 Graphics 頁面的繪圖對象
3 HasMorePages 是否還有要打印的頁面
Print方法:該方法沒有參數 調用它將按照當前設置開始打印.
若實現打印功能首先構造PrintDocument對象添加打印事件
1: PrintDocument printDocument;
2: private void InitializeComponent()
3: {
4: ...
5: // 這裏的printDocument對象能夠經過將PrintDocument控件拖放到窗體上來實現,注意要設置該控件的PrintPage事件。
6: printDocument=new PrintDocument();
7: printDocument.PrintPage += new PrintPageEventHandler (this.printDocument_PrintPage);
8: ...
9: }
實現打印事件功能
打印和繪圖相似都是調用Graphics 類的方法進行畫圖 不一樣的是一個在顯示器上一個在打印紙上而且打印要進行一些複雜的計算
如換行、分頁等。
1: private void printDocument_PrintPage(object sender,PrintPageEventArgs e)
2: {
3: Graphics g = e.Graphics; //得到繪圖對象
4: float linesPerPage = 0; //頁面的行號
5: float yPosition = 0; //繪製字符串的縱向位置
6: int count = 0; //行計數器
7: float leftMargin = e.MarginBounds.Left; //左邊距
8: float topMargin = e.MarginBounds.Top; //上邊距
9: string line = null; 行字符串
10: Font printFont = this.textBox.Font; //當前的打印字體
11: SolidBrush myBrush = new SolidBrush(Color.Black);//刷子
12: linesPerPage = e.MarginBounds.Height / printFont.GetHeight(g);//每頁可打印的行數
13: //逐行的循環打印一頁
14: while(count < linesPerPage && ((line=lineReader.ReadLine()) != null))
15: {
16: yPosition = topMargin + (count * printFont.GetHeight(g));
17: g.DrawString(line, printFont, myBrush, leftMargin, yPosition, new StringFormat());
18: count++;
19: }
20: // 注意:使用本段代碼前,要在該窗體的類中定義lineReader對象:
21: // StringReader lineReader = null;
22: //若是本頁打印完成而line不爲空,說明還有沒完成的頁面,這將觸發下一次的打印事件。在下一次的打印中lineReader會
23: //自動讀取上次沒有打印完的內容,由於lineReader是這個打印方法外的類的成員,它能夠記錄當前讀取的位置
24: if(line != null)
25: e.HasMorePages = true;
26: else
27: {
28: e.HasMorePages = false;
29: // 從新初始化lineReader對象,否則使用打印預覽中的打印按鈕打印出來是空白頁
30: lineReader = new StringReader(textBox.Text); // textBox是你要打印的文本框的內容
31: }
32: }
打印設置,構造打印對話框 將對話框中設置的Document屬性賦給printDocument這樣會將用戶的設置自動保存到printDocument
的PrinterSettings屬性中
1: protected void FileMenuItem_PrintSet_Click(object sender,EventArgs e)
2: {
3: PrintDialog printDialog = new PrintDialog();
4: printDialog.Document = printDocument;
5: printDialog.ShowDialog();
6: }
頁面設置和打印預覽與打印設置原理相同都是構造對話框將用戶在對話框中的設置保存到相應的類的屬性中
1: protected void FileMenuItem_PageSet_Click(object sender,EventArgs e)
2: {
3: PageSetupDialog pageSetupDialog = new PageSetupDialog();
4: pageSetupDialog.Document = printDocument;
5: pageSetupDialog.ShowDialog();
6: }
打印預覽
1: protected void FileMenuItem_PrintView_Click(object sender,EventArgs e)
2: {
3: PrintPreviewDialog printPreviewDialog = new PrintPreviewDialog();
4: printPreviewDialog.Document = printDocument;
5: lineReader = new StringReader(textBox.Text);
6: try
7: {
8: printPreviewDialog.ShowDialog();
9: }
10: catch(Exception excep)
11: {
12: MessageBox.Show(excep.Message, "打印出錯", MessageBoxButtons.OK, MessageBoxIcon.Error);
13: }
14: }
打印就能夠直接調用printDocument的Print()方法由於用戶可能在打印以前還要再更改打印設置因此
在這裏再次顯示打印設置對話框
1: protected void FileMenuItem_Print_Click(object sender,EventArgs e)
2: {
3: PrintDialog printDialog = new PrintDialog();
4: printDialog.Document = printDocument;
5: lineReader = new StringReader(textBox.Text);
6: if (printDialog.ShowDialog() == DialogResult.OK)
7: {
8: try
9: {
10: printDocument.Print();
11: }
12: catch(Exception excep)
13: {
14: MessageBox.Show(excep.Message, "打印出錯", MessageBoxButtons.OK, MessageBoxIcon.Error);
15: printDocument.PrintController.OnEndPrint(printDocument,new PrintEventArgs());
16: }
17: }
18: }
總結打印的過程是
1 在應用程序窗體初始化時構造PrintDocument對象,添加 printDocument 的 PrintPage 方法
2 實現PrintPage方法
3 在用戶的單擊事件中調用 printDocument 的 Print方法實現打印功能
在這中間可能要用到 PrintDialog PrintPreviewDialog PageSetupDialog 設置和查看打印效果這些方法一般是由菜單的單擊觸發的。
本文來自: 中科軟件園(www.4oa.com) 詳細出處參考:http://www.4oa.com/Article/html/6/34/501/2005/18114.html 做者作了部分修改和註釋。