打印控件中的内容和打印窗体中的内容

效果示意:


操作步骤:
1、新建winform项目及创建窗体

2、拖取 打印 相关控件
   PageSetupDialog 、 PrintDialog 、 PrintDocument 、PrintPreviewDialog

3、设置上述控件的Document属性为相应的PrintDocument

4、设置按钮等控件 及 添加相应按钮事件

5、示意代码如下

  1. 代码
  2. public partial class Form3 : Form
  3. {
  4. public Form3()
  5. {
  6. InitializeComponent();
  7. this.printDocument1.OriginAtMargins = true; //启用页边距
  8. this.pageSetupDialog1.EnableMetric = true; //以毫米为单位
  9. }
  10. //打印设置
  11. private void btnSetPrint_Click(object sender, EventArgs e)
  12. {
  13. this.pageSetupDialog1.ShowDialog();
  14. }
  15. //打印预览
  16. private void btnPrePrint_Click(object sender, EventArgs e)
  17. {
  18. this.printPreviewDialog1.ShowDialog();
  19. }
  20. //打印
  21. private void btnPrint_Click(object sender, EventArgs e)
  22. {
  23. if ( this.printDialog1.ShowDialog() == DialogResult.OK)
  24. {
  25. this.printDocument1.Print();
  26. }
  27. }
  28. //打印内容的设置
  29. private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
  30. {
  31. ////打印内容 为 整个Form
  32. //Image myFormImage;
  33. //myFormImage = new Bitmap(this.Width, this.Height);
  34. //Graphics g = Graphics.FromImage(myFormImage);
  35. //g.CopyFromScreen(this.Location.X, this.Location.Y, 0, 0, this.Size);
  36. //e.Graphics.DrawImage(myFormImage, 0, 0);
  37. ////打印内容 为 局部的 this.groupBox1
  38. //Bitmap _NewBitmap = new Bitmap(groupBox1.Width, groupBox1.Height);
  39. //groupBox1.DrawToBitmap(_NewBitmap, new Rectangle(0, 0, _NewBitmap.Width, _NewBitmap.Height));
  40. //e.Graphics.DrawImage(_NewBitmap, 0, 0, _NewBitmap.Width, _NewBitmap.Height);
  41. //打印内容 为 自定义文本内容
  42. Font font = new Font( "宋体", 12);
  43. Brush bru = Brushes.Blue;
  44. for ( int i = 1; i <= 5; i++)
  45. {
  46. e.Graphics.DrawString( "Hello world ", font, bru, i* 20, i* 20);
  47. }
  48. }
  49. }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值