c#打印窗体中的数据

时间:2013-05-22 08:49:22
【文件属性】:

文件名称:c#打印窗体中的数据

文件大小:52KB

文件格式:DOC

更新时间:2013-05-22 08:49:22

打印 打印窗体中的数据

打印窗体textbox中的数据: //在窗体中绘制要打印的数据 private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e) { //绘制label1中的内容 e.Graphics.DrawString(label1.Text, new Font("宋体", 20, FontStyle.Regular), Brushes.Black,270, 400); //绘制textBox1中的内容 e.Graphics.DrawString(textBox1.Text, new Font("宋体", 20, FontStyle.Regular), Brushes.Black, 330, 400); //绘制label2中的内容 e.Graphics.DrawString(label2.Text, new Font("宋体", 20, FontStyle.Regular), Brushes.Black, 270, 430); //绘制textBox2中的内容 e.Graphics.DrawString(textBox2.Text, new Font("宋体", 20, FontStyle.Regular), Brushes.Black, 330, 430); //绘制label3中的内容 e.Graphics.DrawString(label3.Text, new Font("宋体", 20, FontStyle.Regular), Brushes.Black, 270, 460); //绘制textBox3中的内容 e.Graphics.DrawString(textBox3.Text, new Font("宋体", 20, FontStyle.Regular), Brushes.Black, 330, 460);


网友评论

  • 直接用用不了,想用的先好好看说明吧,其实也不难
  • 谢谢楼主分享,但我想找一个工程文件。
  • 不错,源码简单明了,很适合我们这些初学者,谢谢分享