这是我使用的代码(只是与打印相关的部分):
按钮 1 onclick 处理程序方法:
printDialog1 = new PrintDialog();
printDialog1.AllowPrintToFile = true;
printDialog1.PrintToFile = false;
if (printDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
PrintDocument pd = new PrintDocument();
pd.DefaultPageSettings.PaperSize = new PaperSize("A4", 826, 1169);
pd.PrinterSettings.PrintToFile = true;
pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
pd.Print();
}
还有我的 pd_PrintPage 方法:
Bitmap bitmapCanvas = new Bitmap(1000, 1000);
Graphics g = Graphics.FromImage(bitmapCanvas);
g.Clear(Color.White);
...
some g.Draw...() stuff
...
e.Graphics.DrawImage(bitmapCanvas, A(2), A(2));
//where e is the PrintPageEventArgs defined in the method signature
我的问题的第一部分是,这不会打印到选定的打印机(在打印对话框中选择)。如果这是默认打印机,它只会打印到打印机。在 Windows 7 下它可以工作,它可以识别默认打印机,因此默认情况下,默认打印机将在我单击按钮后出现的打印对话框的组合框中选择。
我的主要问题是,这在 Windows Xp 下根本不起作用(不幸的是我只能使用它)。我有点好奇为什么。所以不知道是我弄的乱七八糟,还是Windows Xp下不支持。
我应该用什么来完成或更正我的代码?
任何帮助表示赞赏,非常感谢您!米图拉巴蒂