我有一个创建标志的 Winform 应用程序。一切正常,看起来很好,除非我打印。我有一张图片,上面有文本框。它们在我的计算机上可见,但在我打印时不可见。我假设当我打印图像时以某种方式“被带到前面”。
下面是我的打印功能:
private void btnPrint_Click(object sender, EventArgs e)
{
PrintDocument pd = new PrintDocument();
pd.PrintPage += new PrintPageEventHandler(PrintImage);
pd.Print();
}
void PrintImage(object o, PrintPageEventArgs e)
{
int x = SystemInformation.WorkingArea.X;
int y = SystemInformation.WorkingArea.Y;
int width = this.Width;
int height = this.Height;
Rectangle bounds = new Rectangle(x, y, width, height);
Bitmap img = new Bitmap(width, height);
this.DrawToBitmap(img, bounds);
Point p = new Point(100, 100);
e.Graphics.DrawImage(img, p);
}
我不确定打印功能中的任何东西都是原因,但我想不出其他任何东西。