前段时间,在做一个打印的需求,需要把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界面布局如下:
2 在工具箱中拖入PrintDocument控件和PrintPreviewDialog控件,名称按照默认来就行,分别是printDocument1和printPreviewDialog1
在printPreviewDialog1的Document属性中选择printDocument1
然后在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 运行结果如下:
但是如果你把窗体往任务栏方向往下挪动适当的位置,让任务栏挡住窗体的部分内容,再来打印试试,如下图:
可以看到,任务栏中的菜单都出来了。
所以用这种截图的方式打印不靠谱
2023-07-30日更新
前面说的问题已经找到解决方案了,具体可以看我后面写的博文:文章来源:https://www.toymoban.com/news/detail-607591.html
打印Winfrom控件实现简陋版的打印(C#)_zxy2847225301的博客-CSDN博客文章来源地址https://www.toymoban.com/news/detail-607591.html
到了这里,关于利用Graphics的CopyFromScreen实现简陋版的打印(C#)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!