0

サイズ(1415x1000)のフォーム全体を印刷したいです。ただし、サイズ(1185x740)のフォームを印刷しています。

msdn Web サイトのコードを参照します。

 [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, 13369377);//13369376);

        mygraphics.ReleaseHdc(dc1);

        memoryGraphics.ReleaseHdc(dc2);

    }

  private void printDocument1_PrintPage(object sender, PrintPageEventArgs e)
    {
        e.Graphics.DrawImage(memoryImage, 0, 0);
    }

 private void button1_Click_1(object sender, EventArgs e)
    {
        panel1.Hide();
        CaptureScreen();
        PrintDocument myDoc = new PrintDocument();
        myDoc.PrinterSettings.DefaultPageSettings.PaperSize = new    System.Drawing.Printing.PaperSize("Custom", 1415, 1000);
        PrintPreviewDialog print_dlg = new PrintPreviewDialog();
        print_dlg.Document = printDocument1;
        print_dlg.ShowDialog();
    }

しかし、印刷物で完全なフォームを取得することはできません。それ、どうやったら出来るの?

4

1 に答える 1