利用Graphics的CopyFromScreen实现简陋版的打印(C#)

            前段时间,在做一个打印的需求,需要把Winform界面的控件及内容全部打印出来,但有一个比较坑的地方是,公司提供的打印API打印单选框,打印单选框时发现选框和内容总是有那么一点点不对齐,看着很别扭。不过客户也没有过多的为难,就按照这样交付了。

           今天趁着有空,就查一下有没有打印Winform的Control控件相关的API,在Youtube中看到了一个视频与之相关的,视频地址:Print contents of WinForms Application using C# and VB.Net   https://www.youtube.com/watch?v=mbMGlbMkavA

就照着视频的内容做了一遍,发现效果不是很理想,文章后面会交代,本文仅作学习记录。

步骤如下:

1  新建Winform窗体项目,名为winformDemo,在默认的Form1界面布局如下:

利用Graphics的CopyFromScreen实现简陋版的打印(C#)_第1张图片

2  在工具箱中拖入PrintDocument控件和PrintPreviewDialog控件,名称按照默认来就行,分别是printDocument1和printPreviewDialog1

 利用Graphics的CopyFromScreen实现简陋版的打印(C#)_第2张图片

 在printPreviewDialog1的Document属性中选择printDocument1

利用Graphics的CopyFromScreen实现简陋版的打印(C#)_第3张图片

然后在printDocument1中注册PrintPage事件,事件方法为:printDocument1_PrintPage

3 编写代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace winformDemo
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        Bitmap bitmap;
        private void button1_Click(object sender, EventArgs e)
        {
            Panel panel = new Panel();
            this.Controls.Add(panel);
            Graphics graphics = panel.CreateGraphics();
            Size size = this.ClientSize;
            bitmap = new Bitmap(size.Width,size.Height,graphics);
            graphics = Graphics.FromImage(bitmap);

            Point point = PointToScreen(panel.Location);
            graphics.CopyFromScreen(point.X, point.Y, 0, 0, size);

            printPreviewDialog1.Document = printDocument1;
            printPreviewDialog1.ShowDialog();
        }

        private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
        {
            e.Graphics.DrawImage(bitmap, 0, 0);
        }
    }
}

 其实利用了Graphics的CopyFromScreen的截图功能,然后通过画刷把截图绘制处理再送到打印机打印

4  运行结果如下:

利用Graphics的CopyFromScreen实现简陋版的打印(C#)_第4张图片

但是如果你把窗体往任务栏方向往下挪动适当的位置,让任务栏挡住窗体的部分内容,再来打印试试,如下图:

利用Graphics的CopyFromScreen实现简陋版的打印(C#)_第5张图片

可以看到,任务栏中的菜单都出来了。

所以用这种截图的方式打印不靠谱 

2023-07-30日更新

前面说的问题已经找到解决方案了,具体可以看我后面写的博文:

打印Winfrom控件实现简陋版的打印(C#)_zxy2847225301的博客-CSDN博客

你可能感兴趣的:(C#编程,c#,打印,Print,控件,Graphics,Winform)