C#Winform中預覽列印時設定橫向列印

來源:互聯網
上載者:User
因項目需要,在做一個Screen的列印時,因為Screen中的DataGridView的表格很長,需要橫向排列才能完整的列印,因此設定PrintDocument.PrinterSettings.DefaultPageSettings.Landscape = true。但是在預覽的時候仍然是縱向排列。傷腦筋。。。
花了一些時間做其他的設定均未有效。用Reflector查看PrintController的PrintLoop方法,PrintDocument的列印相關的方法被調用的順序是這樣的:
QueryPageSettings
StartPage
PrintPage
EndPage
目前只處理了StartPage和PrintPage。
於是加上了QueryPageSettings事件的處理,發現每次執行列印時QueryPageSettingsEventArgs.PageSettings.Landscape仍然為false,雖然前面設定了DefaultpageSettings.Landscape=true。
於是在此事件中將其指定為true,再次預覽時,終於可以橫向看到排列整齊的報表了。

private void button2_Click(object sender, EventArgs e) {     PrintPreviewDialog pd = new PrintPreviewDialog();     pd.Document = new PrintDocument();     pd.Document.PrintPage += new PrintPageEventHandler(Document_PrintPage);     pd.Document.QueryPageSettings += new QueryPageSettingsEventHandler(Document_QueryPageSettings);     pd.Document.BeginPrint += new PrintEventHandler(Document_BeginPrint);     if (pd.ShowDialog(this) == DialogResult.OK)     {     } }   void Document_QueryPageSettings(object sender, QueryPageSettingsEventArgs e) {     e.PageSettings.Landscape = true;     int index = -1;     for (int i=0;i<e.PageSettings.PrinterSettings.PaperSizes.Count;i++)     {         if (e.PageSettings.PrinterSettings.PaperSizes[i].PaperName== "A4")         {             index=i;             break;         }     }     if (index != -1)     {         e.PageSettings.PaperSize = e.PageSettings.PrinterSettings.PaperSizes[index];     } }   void Document_BeginPrint(object sender, PrintEventArgs e) { }   void Document_PrintPage(object sender, PrintPageEventArgs e) {     using (Bitmap bit = new Bitmap(this.listBox.Width, this.listBox.Height))     {         this.listBox.DrawToBitmap(bit, this.listBox.ClientRectangle);         e.Graphics.DrawImage(bit, new Point(0, 0));     } }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.