从Windows窗体打印文档

时间:2013-09-16 18:27:48

标签: c#

我让这个编码工作,

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

1 个答案:

答案 0 :(得分: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)