Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 iTextSharp (winforms) 生成 PDF 文档,现在我需要使用标签打印机打印这个生成的 PDF 文档。
我的机器上安装了多台打印机,因此使用 VB.net 我需要选择某台热敏打印机。
选择打印机后,我需要指定运输标签尺寸(宽度和高度)。
因此,一旦选择了标签打印机并指定了自定义标签尺寸,我希望在没有任何用户操作的情况下打印标签(例如跳过 Confitm 框进行打印)。
我不需要完整的代码,我只需要有人把我带入正确的方向。
谢谢
您可以使用 PrintDocument 对象。使用 Print 方法,并在 PrintPage 处理程序中进行实际打印。为此,您可以输出到 PrintPage 处理程序中参数 PrintPageEventArgs 的图形对象。