Wxwidgets 和 Pyqt
Pyqt中有类似的函数PyOnDemandOutputWindow吗? 此函数将控制台输出重定向到单独的窗口。
Is there a similar function PyOnDemandOutputWindow in Pyqt?
This function redirect the console output to a separate window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以用将所有输出写入 QPlainTextEdit 等的包装器替换 sys.std[out|err]。一个非常基本的例子:
还有其他地方:
It is possible to replace
sys.std[out|err]
with a wrapper that writes all output to e.g. a QPlainTextEdit. A very basic example:And somewhere else: