1

我正在使用基于 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 循环),我从中获取账单详情(项目、序列号等)。

我的代码中是否缺少任何内容?

或者

我在代码中做错了吗?

请帮我。

4

1 回答 1

3

我知道这已经两个月大了,您可能发现了错误或放弃了。

无论如何,我走了:在这里,我假设变量i被全局声明为类。如果是这种情况,您需要i在 while 循环完成后重置为 0。

要确认您需要重置,只需在您第二次进入该方法(真正的打印方法)时i调试您的应用程序并检查值。i此外,如果您直接打印而不进行预览,它应该可以工作。

于 2013-07-09T12:12:30.060 回答