WPF DocumentViewer - 无需确认即可打印

发布于 2024-11-02 08:48:55 字数 189 浏览 0 评论 0原文

我有一个 WPF 应用程序,我在其中使用文档查看器。我还开始使用 documentviewer.Print(); 以编程方式打印然而,当按下该按钮时,它会显示带有 Windows 打印机的屏幕,并且用户必须在该屏幕上再次单击“确定”才能启动。有没有办法避免确认并进行 documentviewer.Print();立即在默认 Windows 打印机上启动打印作业?

I have a WPF application where I use a document viewer. I also start printing programmatically with documentviewer.Print(); However, when that is pressed it brings up the screen with the Windows printers and makes the user have to click "OK" again on that screen to start. Is there a way to avoid the confirmation and make documentviewer.Print(); immediately start the print job on the default Windows printer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百思不得你姐 2024-11-09 08:48:55

您所需要的只是默认的打印队列,您可以通过

var pq = LocalPrintServer.GetDefaultPrintQueue()

此获得它,您可以创建一个 XpsDocumentWriter

var writer = PrintQueue.CreateXpsDocumentWriter(pq);

现在,您可以获得 DocumentPaginator 从您的 DocumentViewer 通过 Document 属性,它返回一个 IDocumentPaginatorSource,其具有 DocumentPaginator 属性

var paginator = documentviewer.Document.DocumentPaginator;

您可以将该权限发送到 XpsDocumentWriter的Write方法

writer.Write(paginator);

很简单吧?

All you need is the default print queue, which you can get via

var pq = LocalPrintServer.GetDefaultPrintQueue()

From this, you can create an XpsDocumentWriter:

var writer = PrintQueue.CreateXpsDocumentWriter(pq);

Now, you can get the DocumentPaginator from your DocumentViewer via the Document property, which returns an IDocumentPaginatorSource that has a DocumentPaginator property:

var paginator = documentviewer.Document.DocumentPaginator;

and you can send that right to the XpsDocumentWriter's Write method:

writer.Write(paginator);

Simple, isn't it?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文