Tkinter 在循环处理时冻结,我该如何防止它?

发布于 2024-12-06 01:29:55 字数 121 浏览 1 评论 0原文

我正在制作一些包含 while 循环的程序(以说明一些数字计算),当我使用 Tkinter 作为 GUI 时,程序窗口会冻结,直到循环完成。我想添加一个停止按钮,并且希望窗口不冻结。我怎样才能做到这两件事?

谢谢

I am making some programs which includes while loops(to illustrate some number calculatings) and when I use Tkinter for GUI, the program windows is freezing until the loop finished. I want to add a stop button and I want the windows not to freeze. How can I do these two things?

Thank you

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

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

发布评论

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

评论(1

⒈起吃苦の倖褔 2024-12-13 01:29:55

您必须使用单独的线程或进程。 Tkinter 使用单个线程来处理显示更新,并且同一线程用于执行事件回调。如果您的事件处理程序阻塞,则在完成之前不会执行任何 Tkinter 代码。

如果您有 Tkinter 线程(调用 Tk.mainloop 的线程)和应用程序其余部分的另一个线程,那么在 Tkinter 线程中运行的事件处理程序可以简单地传递消息(可能使用 Queue.Queue) 到您的应用程序事件处理程序。

You'll have to use separate threads or processes. Tkinter uses a single thread to process display updates, and the same thread is used to do event callbacks. If your event handler blocks then no Tkinter code will execute until it completes.

If you have the Tkinter thread (the one that calls Tk.mainloop) and another thread for the rest of your application, then the event handlers running within the Tkinter thread can simply pass messages (possibly using Queue.Queue) to your application event handler.

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