我正在关注 MSDN 关于打印多页的“操作方法”文档:如何:在 Windows 窗体中打印多页文本文件
我已经将该页面上的示例变成了一个项目(尝试了 Visual Studio 2010 和 2012),发现它在打印少量页面时按预期工作,但是在打印大量页面(大约 9 页)时它开始呈现开始页为空白(第一页和第二页为空白,接下来的 15 页是正确的,等等)。
任何人都可以确认这种行为吗?我看不出是什么原因造成的,也没有抛出异常。
编辑:我收到了 2 个反对票,但我不知道为什么。我会尝试更清楚。这是我认为包含问题的代码部分:
private void printDocument1_PrintPage(object sender, PrintPageEventArgs e)
{
int charactersOnPage = 0;
int linesPerPage = 0;
// Sets the value of charactersOnPage to the number of characters
// of stringToPrint that will fit within the bounds of the page.
e.Graphics.MeasureString(stringToPrint, this.Font,
e.MarginBounds.Size, StringFormat.GenericTypographic,
out charactersOnPage, out linesPerPage);
// Draws the string within the bounds of the page
e.Graphics.DrawString(stringToPrint, this.Font, Brushes.Black,
e.MarginBounds, StringFormat.GenericTypographic);
// Remove the portion of the string that has been printed.
stringToPrint = stringToPrint.Substring(charactersOnPage);
// Check to see if more pages are to be printed.
e.HasMorePages = (stringToPrint.Length > 0);
}
我不相信任何数据类型被溢出。我用不同的打印机试过这个,但每一个都有相同的结果。如果您投反对票,请发表评论,让我知道为什么这个问题有问题。注意:我尝试了 .NET Framework 4 和 4.5,结果相同。