命令提示符打印对话框命令
Windows 上的 C++ 命令行程序有什么方法可以生成图形 GUI 打印对话框以打印到打印机,就像通常的 GUI 程序一样?我梳理了这个网页,看起来只有在后台将文件打印到预定打印机的命令。
Is there any way a C++ commandline program on Windows can produce a graphical GUI print dialog for printing to a printer, just like usual GUI programs? I've combed through this webpage and it seems there are only commands that print files in the background to a pre-determined printer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 中的命令行应用程序仍然可以完全访问 GUI 模式应用程序所做的一切(唯一的区别是它们从控制台开始,而 GUI 模式应用程序则不然)。
因此您仍然可以调用所有常规 打印来自 GDI 的函数。
Command-line applications in Windows still have full access to everything that GUI-mode applications do (the only difference is they start out with a console, whereas GUI-mode applications do not).
So you can still call all of the regular printing functions from GDI.