在运行时在printdocument控件中绘制

在运行时在printdocument控件中绘制

本文介绍了在运行时在printdocument控件中绘制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

朋友们.

推荐答案

private void pd_PrintPage(object sender, PrintPageEventArgs e)
   {
   // Draw a picture.
   e.Graphics.DrawImage(Image.FromFile(@"F:\Temp\MyPicture.bmp"), e.Graphics.VisibleClipBounds);
   e.Graphics.DrawRectangle(myPen, myRectangle);
   e.Graphics.DrawString("Hello!", myFont, myBrush, myPoint);
   e.HasMorePages = false;  //Last page
   }



[edit]奇怪-右括号不会停留在我所说的位置...-OriginalGriff [/edit]



[edit]Strange - the close bracket would not stay where I put it... - OriginalGriff[/edit]



这篇关于在运行时在printdocument控件中绘制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 22:02