gpt4 book ai didi

c# - 如何跳转到 PrintDocument 中的下一页?

转载 作者:太空狗 更新时间:2023-10-29 21:34:16 31 4
gpt4 key购买 nike

我有一个应用程序可以打印您想要的条码数量,但如果条码数量大于 PrintDocument 的大小它不会跳转到下一页。

我想知道如何添加更多页面或写在 PrintDocument 的下一页中.

printscreen

我正在使用 PrintPreview 在此 Windows 窗体中显示 PrintDocument。

最佳答案

如果连接 OnPrintPage 事件,您可以告诉 PrintDocument 是否需要在 PrintPageEventArguments 上添加另一个页面。

IEnumerator items;

public void StartPrint()
{
PrintDocument pd = new PrintDocument();
pd.PrintPage += new PrintPageEventHandler(this.pd_PrintPage);
items = GetEnumerator();
if (items.MoveNext())
{
pd.Print();
}
}

private void pd_PrintPage(object sender, PrintPageEventArgs ev)
{
const int neededHeight = 200;
int line =0;
// this will be called multiple times, so keep track where you are...
// do your drawings, calculating how much space you have left on one page
bool more = true;
do
{
// draw your bars for item, handle multilple columns if needed
var item = items.Current;
line++;
// in the ev.MarginBouds the width and height of this page is available
// you use that to see if a next row will fit
if ((line * neededHeight) < ev.MarginBounds.Height )
{
break;
}
more = items.MoveNext();
} while (more);
// stop if there are no more items in your Iterator
ev.HasMorePages = more;
}

关于c# - 如何跳转到 PrintDocument 中的下一页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18814493/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com