2

我现在在打印文档时一直在苦苦挣扎,文档有页眉页脚和正文,正文(这是一个网格)对于每个不同的文档都有不同的大小。根据网格的行数,文档可能具有 2 种尺寸(A5、A4)之一

我最初使用 ReportViewer 控件,但它有一些问题,主要是打印 2 篇论文,无论文档大小如何,经过 10 周的研究我放弃了,没有任何意义。

然后我尝试打印一个表格,它的所有内容(这并不容易)再次出现问题,其中一个屏幕分辨率不同,更糟糕的是,如果正文有很多行,表格将不适合屏幕,那么它就不会打印。

我的问题是:
word 如何打印页面的所有内容?机制是什么?我只需要一个先机,如何打印屏幕上未显示的内容?

4

1 回答 1

1

我不确定这是否是你想要的,但是,

您要做的是创建一个虚拟表单,该表单与您要打印的控件的大小相同,然后将控件添加到虚拟表单并显示表单并在虚拟表单上打印控件。

我是这样做的:

private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
    //Create bitmap
    Bitmap image = new Bitmap(dataGridView1.Width, dataGridView1.Height);
    //Create form
    Form f = new Form();
    //add datagridview to the form
    f.Controls.Add(dataGridView1);
    //set the size of the form to the size of the datagridview
    f.Size = dataGridView1.Size;
    //draw the datagridview to the bitmap
    dataGridView1.DrawToBitmap(image, new Rectangle(0, 0, dataGridView1.Width, dataGridView1.Height));
    //dispose the form
    f.Dispose();
    //print
    e.Graphics.DrawImage(image, 0, 0);
}

这将打印 dataGridView1,即使它在表单上看不到。

于 2013-04-15T08:34:45.883 回答