使用CreateGraphics打印当前表单,但也会打印消息框

时间:2013-08-12 08:31:22

标签: c# winforms printscreen

我正在使用CreateGraphics函数打印我的活动表单(formMain)作为下面的代码

Printing the Form (Visual C#)

环境:Windows 7专业经典模式,VisuaStudio 2008

[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 printDocument1_PrintPage(System.Object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
   e.Graphics.DrawImage(memoryImage, 0, 0);
}
private void printButton_Click(System.Object sender, System.EventArgs e)
{
   if (MessageBox.Show("test", "test", MessageBoxButtons.YesNo) == DialogResult.Yes)
   {
        CaptureScreen();
        printDocument1.Print();
   }
}

情形1 : 当MessageBox默认显示位置时,formMain可以清晰打印 Clearly

案例2: 但是,如果使用鼠标将messageBox移出默认位置,则打印结果将变脏。 它现在让messageBox(图形)包含在mainForm中。

Dirty

2 个答案:

答案 0 :(得分:1)

不要直接使用WinAPI(BitBlt,...),而是尝试使用:

Bitmap bmp = new Bitmap(this.Width, this.Height);
this.DrawToBitmap(bmp, this.Bounds);
bmp.Save(@"c:\temp\test.png", System.Drawing.Imaging.ImageFormat.Png); // For testing

这应该只绘制表格的内容 我用另一种最顶级的形式测试了这一点并取得了成功。

将其放入您的代码中:

private void CaptureScreen() {
    memoryImage = new Bitmap(this.Width, this.Height);
    this.DrawToBitmap(memoryImage, this.Bounds);
}

答案 1 :(得分:0)

  像XP一样。对策是在CaptureScreen()调用之前放置this.Update();

我认为我的系统是Windows 7,但是使用经典模式 - > as windows xp