0

我让这个编码工作,

    [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 个组合框。谢谢

4

1 回答 1

0

在您尝试过的解决方案中,它们可能依赖于表单的 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)
于 2013-09-16T18:41:35.337 回答