我正在使用基于 c# windows 的应用程序。[Visual Studio 2010]
我正在尝试打印账单。
我已经使用e.Graphics.Drawstring
.
在此它向我展示了带有所有适当数据的 printpreview。
但是,当我打印该 printpreview 时,它没有显示账单中的项目。[打印预览的特定部分。其他数据显示]。
我的代码如下:
e.Graphics.DrawString("Amount", drawFont, Brushes.Black, new RectangleF(tempX + 600, tempY, dataGridView1.Columns[0].Width, dataGridView1.Rows[1].Height), str);
while (i < dataGridView1.Rows.Count-1)
{
if (height > e.MarginBounds.Height)
{
height = 100;
width = 100;
e.HasMorePages = true;
return;
}
height += dataGridView1.Rows[i].Height;
e.Graphics.DrawString((idInCol).ToString(), drawFont, Brushes.Black, new RectangleF(tempX, ((i*22)+(tempY+25)), dataGridView1.Columns[0].Width, dataGridView1.Rows[0].Height), str);
e.Graphics.DrawString(dataGridView1.Rows[i].Cells[2].FormattedValue.ToString().Trim(), drawFont, Brushes.Black, new RectangleF(tempX + 30, ((i * 22) + (tempY +25)), 500, dataGridView1.Rows[0].Height), str);
e.Graphics.DrawString(dataGridView1.Rows[i].Cells[3].FormattedValue.ToString(), drawFont, Brushes.Black, new RectangleF(tempX + 400, ((i * 22) + (tempY +25)), dataGridView1.Columns[0].Width, dataGridView1.Rows[0].Height), drawFormat);
width += dataGridView1.Columns[0].Width;
e.Graphics.DrawString(dataGridView1.Rows[i].Cells[4].FormattedValue.ToString().Trim(), drawFont, Brushes.Black, new RectangleF(tempX + 500, ((i * 22) + (tempY +25)), dataGridView1.Columns[0].Width, dataGridView1.Rows[0].Height), drawFormat);
width += dataGridView1.Columns[0].Width;
e.Graphics.DrawString(dataGridView1.Rows[i].Cells[5].FormattedValue.ToString().Trim(), drawFont, Brushes.Black, new RectangleF(tempX + 600, ((i * 22) + (tempY +25)), dataGridView1.Columns[0].Width, dataGridView1.Rows[0].Height), drawFormat);
width += dataGridView1.Columns[0].Width;
idInCol++;
i++;
}
这是我的账单截图:
在我打印出来时,它没有显示账单详情。除了那个之外,所有其他数据都显示在打印输出中。
我已经粘贴了代码(while 循环),我从中获取账单详情(项目、序列号等)。
我的代码中是否缺少任何内容?
或者
我在代码中做错了吗?
请帮我。