内容简介:翻译自:https://stackoverflow.com/questions/3567238/threaded-tkinter-script-crashes-when-creating-the-second-toplevel-widget
脚本,它使用Tkinter作为GUI.我的小脚本应该每隔X秒创建一个Toplevel小部件.当我运行我的代码时,第一个Toplevel小部件成功创建,但当它尝试创建第二个时,程序崩溃.
我正在做的是使用after方法每隔5秒与root的mainloop一起调用函数startCounting.每次调用此函数时,我都会将Toplevel小部件对象附加到列表中并启动一个新线程,希望它将运行新的mainloop.
如果有人能解决这个问题,我将非常感激.顺便说一下,这只是我目前用来解决我的问题的一个小脚本,这使我无法继续我的真实学校项目.
代码:
import threading,thread from Tkinter import * def startCounting(): global root global topLevelList global classInstance topLevelList.append (Toplevel()) topLevelList[len(topLevelList)-1].title("Child") classInstance.append(mainLoopThread(topLevelList[len(topLevelList)-1])) root.after(5000,startCounting) class mainLoopThread(threading.Thread): def __init__(self,toplevelW): self.toplevelW = toplevelW threading.Thread.__init__(self) self.start() def run(self): self.toplevelW.mainloop() global classInstance classInstance = [] global topLevelList topLevelList = [] global root root = Tk() root.title("Main") startCounting() root.mainloop()
:
Just run all UI code in the main thread, and let the writers write to a Queue object; e.g.
…接下来是一个实例,显示了将请求写入队列的辅助线程,主循环专门负责与Tk的所有直接交互.
许多对象和子系统不喜欢接收来自多个不同线程的请求,并且在GUI工具包的情况下,通常仅需要使用主线程并不罕见.
这个问题的正确 Python 架构总是用一个线程(主要的,如果必须的话)来为挑剔的对象或子系统服务;每个需要与所述子系统或对象交互的其他线程必须通过将请求排队到专用线程来获得它(如果某些请求需要结果,则可能在结果的“返回队列”上等待).这对于通用线程来说也是一个非常合理的Python架构(我在“果壳中的Python”中详细阐述了它,但这是另一个主题;-).
翻译自:https://stackoverflow.com/questions/3567238/threaded-tkinter-script-crashes-when-creating-the-second-toplevel-widget
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 解决Djanog中覆盖字段部件模板无效问题
- 实例 | PyQt5动态更新小部件内容
- Flutter 入门指北(Part 2)之基础部件
- 如何在HTML嵌入一个Vue.js窗口部件?
- AI只是数据科学部件的总和,我们的AI必须做什么?
- 苹果宣布向第三方维修店提供正品零部件和工具
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Node.js:来一打 C++ 扩展
死月 / 电子工业出版社 / 2018-6-1 / 109
Node.js 作为近几年新兴的一种编程运行时,托 V8 引擎的福,在作为后端服务时有比较高的运行效率,在很多场景下对于我们的日常开发足够用了。不过,它还为开发者开了一个使用C++ 开发 Node.js 原生扩展的口子,让开发者进行项目开发时有了更多的选择。 《Node.js:来一打 C++ 扩展》以 Chrome V8 的知识作为基础,配合 GYP 的一些内容,将教会大家如何使用 Node......一起来看看 《Node.js:来一打 C++ 扩展》 这本书的介绍吧!