private void PrintTextBox(object sender, PrintPageEventArgs e)
{
e.Graphics.DrawString(textBox1.Text, textBox1.Font, Brushes.Black, 50, 20);
}
private void printListButton_Click(object sender, EventArgs e)
{
PrintDocument pd = new PrintDocument();
pd.PrintPage += PrintTextBox;
PrintPreviewDialog ppd = new PrintPreviewDialog();
ppd.Document = pd;
ppd.ShowDialog();
}
我使用PrintTextBox
尝试了e.HasMorePages == true
方法,但随后又开始添加页面。你知道如何解决它吗?
答案 0 :(得分:1)
这是一个经常出现的问题,e.hasmorepages没有共同的行为。 e.hasmorepages将一遍又一遍地触发printtextbox,直到你不说(e.hasmorepages = false)。
你必须计算行数,然后计算空间,如果它不适合你的论文,你可以决定文档是否有更多的页面。
我通常使用一个整数来计算我要打印的行数,如果没有足够的空间那么e.hasmorages = true;
选中这个更简单的示例,您必须添加system.drawing.printing
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private string[] Lines = new string[10];
private int CurrentRow = 0;
private void button1_Click(object sender, EventArgs e)
{
for (int i = 0; i < 10; i++)
{
Lines[i] = i.ToString("N2");
}
PrintDocument pd=new PrintDocument();
PrintDialog pdi = new PrintDialog();
pdi.ShowDialog();
pd.PrinterSettings = pdi.PrinterSettings;
pd.PrintPage += PrintTextBox;
pd.Print();
}
private void PrintTextBox(object sender, PrintPageEventArgs e)
{
int y = 0;
do
{
e.Graphics.DrawString(Lines[CurrentRow],new Font("Calibri",10),Brushes.Black,new PointF(0,y));
CurrentRow += 1;
y += 20;
if (y > 20) // max px per page
{
e.HasMorePages = CurrentRow != Lines.Count(); // check if you need more pages
break;
}
} while(CurrentRow < Lines.Count());
}
}