我试图用本地打印机打印一个xps文件,没有任何对话框.当我调用PrintQueue.AddJob()时执行停止它不会转到下一行代码,但它不会抛出任何异常并且编程继续运行.
我使用的代码:
LocalPrintServer lps = new LocalPrintServer();
PrintQueue pq = lps.GetPrintQueue("printQueueName");
pq.AddJob("jobName", pathToFile, false);
谢谢.
最佳答案 我注意到了同样的问题,但我只是找到了一些解决方法.我尝试使用CreateXpsDocumentWriter.Write方法解决此问题,但是从我的文档中删除了一些页面设置(如每页的页面方向).
确实发现使用PrintQueueStream工作并保持页面设置.
https://docs.microsoft.com/en-us/dotnet/api/system.printing.printqueuestream
LocalPrintServer lps = new LocalPrintServer();
PrintQueue pq = lps.GetPrintQueue("printQueueName");
using (var fileStream = new StreamReader(pathToFile))
using (var printStream = new PrintQueueStream(pq, "jobName", true))
{
fileStream.BaseStream.CopyTo(printStream);
}