使用PrintDocument打印多个页面

时间:2012-04-19 15:48:50

标签: c# .net printing

我正在尝试打印发票。发票应该可以打印在多个页面上,但这就是问题所在。我可以在一个页面上完美地打印发票,但是一旦发票不适合单个页面,打印工作就会退出第一页。

这是我正在使用的代码。 'artikelen'是一个文章列表(List)。我已经阅读了几个类似的例子,我很确定我在这里遗漏了一些东西。

(编辑:删除了一些不必要的代码)

public void PrintA4Factuur()
    {
        p = new PrintDocument();
        p.PrintPage +=
            new PrintPageEventHandler(printPage);
        printPreviewDialog.Document = p;
        printPreviewDialog.ShowDialog();
    }

void printPage(object sender1, PrintPageEventArgs e1)
    {
Graphics g = e1.Graphics;
int yPos = 320;
float pageHeight = e1.MarginBounds.Height;
int artikelPosition = 0;
while (yPos + 100 < pageHeight
            && artikelPosition < this.artikelen.Count)
        {
            // Do stuff with articles (printing details in different rectangles

            artikelPosition += 1;
            yPos += 20;
        }

        if (artikelPosition < this.artikelen.Count)
        {
            e1.HasMorePages = true;
            return;
        }
        else
        {
            e1.HasMorePages = false;
        }
}

2 个答案:

答案 0 :(得分:4)

嗯,Lars指出了在每个页面开头将artikelPosition重置为零的问题,但此代码还存在一些其他问题。

您应始终使用e1.MarginBounds 对于坐标,因为用户可以更改边距,而p.DefaultPageSettings将不包含该边距。

使用GetHeight(yourDeviceGraphPort)之类的字体指标,不要硬编码行高。

始终使用float s作为坐标,不要在int之间进行转换。

字体是非托管资源,完成后必须Dispose。在循环中重复创建和处理字体是低效的;在调用PrintDocument.Print()之前构造它并在打印完所有页面后将其处理掉。

System.Drawing中还定义了Black SolidBrush。

答案 1 :(得分:3)

我发现你的代码反其道而行之:如果它打印多个页面,它会继续打印到无穷大。

尝试将索引位置变量移到PrintPage事件之外,因为将其设置回零只是将其重新设置为开头:

int artikelPosition = 0;

开始打印时重置:

public void PrintA4Factuur()
{
  artikelPosition = 0

  p = new PrintDocument();
  p.PrintPage += printPage;
  printPreviewDialog.Document = p;
  printPreviewDialog.ShowDialog();
}

然后在PrintPage例程中注释掉它:

void printPage(object sender1, PrintPageEventArgs e1)
{
  Graphics g = e1.Graphics;
  int yPos = 320;
  float pageHeight = e1.MarginBounds.Height;

  // int artikelPosition = 0;

  // continue with code
}