如何在WinFormc#中打印面板?

如何在WinFormc#中打印面板?,c#,winforms,printing,panel,C#,Winforms,Printing,Panel,我有一个带有标签和datagridview的面板。我正在尝试使用此代码打印面板及其内容 PrintDialog myPrintDialog = new PrintDialog(); System.Drawing.Bitmap memoryImage = new System.Drawing.Bitmap(panel2.Width, panel2.Height); panel2.DrawToBitmap(memoryImage, panel2.ClientR

我有一个带有标签和datagridview的面板。我正在尝试使用此代码打印面板及其内容

    PrintDialog myPrintDialog = new PrintDialog();
        System.Drawing.Bitmap memoryImage = new System.Drawing.Bitmap(panel2.Width, panel2.Height);
        panel2.DrawToBitmap(memoryImage, panel2.ClientRectangle);
        myPrintDialog.ShowDialog();

            System.Drawing.Printing.PrinterSettings values;
            values = myPrintDialog.PrinterSettings;
            myPrintDialog.Document = printDocument1;
            printDocument1.PrintController = new StandardPrintController();
            printDocument1.Print();

        printDocument1.Dispose();

但它什么也没印出来。我删除了datagridview,但仍然没有打印任何内容。然后我改变了面板的背面颜色,但它再次打印白色页面。请指导我如何执行此操作?

将此代码添加到
PrintPage
事件,并从
PrintDocument
类对象调用
Print()
方法

private void doc_PrintPage(object sender, PrintPageEventArgs e)
{
    float x = e.MarginBounds.Left;
    float y = e.MarginBounds.Top;
    Bitmap bmp = new Bitmap(panel2.Width, panel2.Height);
    panel2.DrawToBitmap(bmp, new Rectangle(0, 0, panel2.Width, panel2.Height));
    e.Graphics.DrawImage((Image)bmp, x, y);
}
像这样调用方法

PrintDocument doc = new PrintDocument();
doc.PrintPage += this.doc_PrintPage;

PrintDialog dlg = new PrintDialog();
dlg.Document = doc;
if (dlg.ShowDialog() == DialogResult.OK)
{
    doc.Print();
}

谢谢现在开始工作了