随笔 - 566  文章 - 2  评论 - 77  阅读 - 117万

winform 实现打印功能

本文转自:

http://www.cnblogs.com/freeliver54/archive/2010/10/20/1856978.html

 

学习c# winform 打印 参照了网络上诸多资源
效果示意:

 

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

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

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

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

5、示意代码如下

 

代码
public partial class Form3 : Form
{
    
public Form3()
    {
        InitializeComponent();
        
this.printDocument1.OriginAtMargins = true;//启用页边距
        this.pageSetupDialog1.EnableMetric = true//以毫米为单位

    }

    
//打印设置
    private void btnSetPrint_Click(object sender, EventArgs e)
    {
        
this.pageSetupDialog1.ShowDialog(); 
    }

    
//打印预览
    private void btnPrePrint_Click(object sender, EventArgs e)
    {
        
this.printPreviewDialog1.ShowDialog(); 
    }

    
//打印
    private void btnPrint_Click(object sender, EventArgs e)
    {
        
if (this.printDialog1.ShowDialog() == DialogResult.OK)
        {
            
this.printDocument1.Print();
        }
    }

    
//打印内容的设置
    private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
    {                        
        
////打印内容 为 整个Form
        //Image myFormImage;
        
//myFormImage = new Bitmap(this.Width, this.Height);
        
//Graphics g = Graphics.FromImage(myFormImage);
        
//g.CopyFromScreen(this.Location.X, this.Location.Y, 0, 0, this.Size);
        
//e.Graphics.DrawImage(myFormImage, 0, 0);

        
////打印内容 为 局部的 this.groupBox1
        //Bitmap _NewBitmap = new Bitmap(groupBox1.Width, groupBox1.Height);
        
//groupBox1.DrawToBitmap(_NewBitmap, new Rectangle(0, 0, _NewBitmap.Width, _NewBitmap.Height));
        
//e.Graphics.DrawImage(_NewBitmap, 0, 0, _NewBitmap.Width, _NewBitmap.Height); 

        
//打印内容 为 自定义文本内容 
        Font font = new Font("宋体"12);
        Brush bru 
= Brushes.Blue; 
        
for (int i = 1; i <= 5; i++)
        {
            e.Graphics.DrawString(
"Hello world ", font, bru, i*20, i*20);
        }
    }
}
posted on   wtq  阅读(35343)  评论(10编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 字符编码:从基础到乱码解决
< 2011年7月 >
26 27 28 29 30 1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31 1 2 3 4 5 6

点击右上角即可分享
微信分享提示