1

我有一个用于创建标签的 WinForm。

它调用 a并使用's中的PrintPreviewDialog显示信息。PrintPageEventArgsPrintDocumentPrintPageEventHandler

void Document_Printed(object sender, PrintPageEventArgs e) {
  // Code goes here
}

如果标签是一个小地址标签,它是一个 8.5x11 的字母,而不是在 中看到单个标签PrintPreviewDialog,我想查看适合该标签的标签数量PageSettings.PaperSize

示例:假设四 (4) 个项目适合所选介质(Avery 打印机标签或任何东西)。

  • 如果我的最终用户指定要打印 1 到 4 个副本,我希望我的打印预览对话框显示所有副本。

  • 如果我的最终用户指定的项目超过四 (4) 个,则打印预览对话框应该显示多个页面(我以前从未处理过多个页面)。

我可以调整我的数据大小以适合我的标签大小,但我不知道如何让我PrintPageEventHandlerPrintPreviewDialog.

有人可以告诉我这是怎么做到的吗?如何在每张工作表上显示和打印多个标签(文档?)?

编辑:这是我的代码,它基于 2 个 RectangleF 对象:pageRect 和 LabelRect:

void Document_Printed(object sender, PrintPageEventArgs e) {
  if (printPreview == null) return;
  int labelSupport = 1;
  RectangleF pageRect = new RectangleF(0, 0, printPreview.Document.DefaultPageSettings.PaperSize.Width, printPreview.Document.DefaultPageSettings.PaperSize.Height);
  float fW = (pageRect.Width < LabelRect.Width) ? (pageRect.Width / LabelRect.Width) : (LabelRect.Width / pageRect.Width);
  float fH = (pageRect.Height < LabelRect.Height) ? (pageRect.Height / LabelRect.Height) : (LabelRect.Height / pageRect.Height);
  // START Portion I need HELP with!
  if (1 < LabelsPerPage) {
    if (Landscape) {
    } else {
    }
  } else {
    if (Landscape) {
    } else {
    }
  }
  // END (I think) Portion I need HELP with!
  SizeF ratio = new SizeF(fW, fH);
  Graphics G = e.Graphics;
  foreach (Label item in labelList) {
    Console.WriteLine(item.Name);
    using (SolidBrush b = new SolidBrush(Color.Black)) {
      using (Pen p = new Pen(b)) {
        float x = ratio.Width * (float)item.Location.X;
        float y = ratio.Height * (float)item.Location.Y;
        float w = ratio.Width * (float)item.Size.Width;
        float h = ratio.Height * (float)item.Size.Height;
        RectangleF r = new RectangleF(x, y, w, h);
        G.DrawString(item.Text, item.Font, b, r);
      }
    }
  }
}

编辑 2:我需要一种在 1 页上打印 2 个或更多文档的方法。到目前为止,还没有解决这个关键点。这就是我需要的答案。

4

1 回答 1

1

在第一个页面之后打印页面实际上很容易做到:只需将 PrintPageEventArgs HasMorePages 属性设置为 true。

棘手的部分是知道何时通过设置HasMorePages为 false 来停止此操作。我通过将每个打印作业的数据存储在列表中并使用索引值来跟踪我在此列表中的位置来完成此操作。

每次触发 PrintPage 事件时,我都会增加我在 List 中使用的索引,以向 PrintPage 事件提供我想要打印的页面的详细信息,如果我在最后一个元素上,我将 HasMorePages 设置为 false。

void Document_Printed(object sender, PrintPageEventArgs e) { 
   // Get data for this page.
   //xxx =  pageDataList[indexValue];

   // Code to print stuff.

   indexValue++;
   e.HasMorePages = (pageDataList.Length == indexValue);
}

这种方法也适用于您,也许与我在您的代码中看到的 labelList 一起使用。由于您将分四批打印,因此您显然必须稍微调整逻辑,但我认为您明白了。

于 2011-04-27T21:05:35.147 回答