从 Windows 窗体打印文档
本文关键字:文档 打印 窗体 Windows | 更新日期: 2023-09-27 18:31:41
我让这个编码工作,
[System.Runtime.InteropServices.DllImport("gdi32.dll")]
public static extern long BitBlt(IntPtr hdcDest, int nXDest, int nYDest, int nWidth, int nHeight, IntPtr hdcSrc, int nXSrc, int nYSrc, int dwRop);
private Bitmap memoryImage;
private void CaptureScreen()
{
Graphics mygraphics = this.CreateGraphics();
Size s = this.Size;
memoryImage = new Bitmap(s.Width, s.Height, mygraphics);
Graphics memoryGraphics = Graphics.FromImage(memoryImage);
IntPtr dc1 = mygraphics.GetHdc();
IntPtr dc2 = memoryGraphics.GetHdc();
BitBlt(dc2, 0, 0, this.ClientRectangle.Width, this.ClientRectangle.Height, dc1, 0, 0, 13369376);
mygraphics.ReleaseHdc(dc1);
memoryGraphics.ReleaseHdc(dc2);
}
private void button1_Click(object sender, EventArgs e)
{
CaptureScreen();
printDocument1.Print();
}
private void printDocument1_PrintPage_1(object sender, PrintPageEventArgs e)
{
e.Graphics.DrawImage(memoryImage, 0, 0);
}
但是,这为我提供了没有控制框或标题栏的Windows表单的屏幕截图,但我仍然可以看到我的打印按钮和所有这些文本框。 我想要的是,像表单一样打印我的文档,但我得到了表单的屏幕截图。我应该在这里做什么,任何建议。我有几个标签,4个文本框,1个组合框。谢谢
在您尝试过的解决方案中,它们可能依赖于窗体的 Size 属性。
尝试使用窗体的 ClientSize 属性,该属性是没有控制框或标题栏的所有内容,并适当地偏移起始位置
更新
这样的事情应该有效:
Bitmap img = new Bitmap(this.ClientRectangle.Width, this.ClientRectangle.Height);
this.DrawToBitmap(img, this.ClientRectangle);
Point p = new Point(40, 650);
e.Graphics.DrawImage(img, p)