gtk TextView 小部件在功能期间不会更新
我是使用 python 和 gtk 进行 GUI 编程的新手,所以这是一个初学者问题。 我有一个在按下按钮时调用的函数,该函数执行各种任务,还有一个 TextView 小部件,我在每个任务完成后写入该小部件。 问题是 TextView 小部件在整个功能完成之前不会更新。 我需要在每次任务后更新它。
I'm new to GUI programming with python and gtk, so this is a bit of a beginners question.
I have a function that is called when a button is pressed which does various tasks, and a TextView widget which I write to after each task is completed. The problem is that the TextView widget doesn't update until the entire function has finished. I need it to update after each task.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次更新 TextView 调用后,
您可以通过自定义函数进行更新:
来自 PyGTK 常见问题解答:
如何在长时间内强制更新应用程序窗口回调还是其他内部操作?
After each update to the TextView call
You can do your update through a custom function:
From the PyGTK FAQ:
How can I force updates to the application windows during a long callback or other internal operation?