我有一个简单的 GUI,它从另一个 python 文件运行各种脚本,一切正常,直到 GUI 运行一个包含 while 循环的函数,此时 GUI 似乎崩溃并变得不活动。有没有人对如何克服这个问题有任何想法,因为我相信这与正在更新的 GUI 有关,谢谢。下面是我的 GUI 的简化版本。
图形用户界面
#!/usr/bin/env python
# Python 3
from tkinter import *
from tkinter import ttk
from Entry import ConstrainedEntry
import tkinter.messagebox
import functions
AlarmCode = "2222"
root = Tk()
root.title("Simple Interface")
mainframe = ttk.Frame(root, padding="3 3 12 12")
mainframe.grid(column=0, row=0, sticky=(N, W, E, S))
mainframe.columnconfigure(0, weight=1)
mainframe.rowconfigure(0, weight=1)
ttk.Button(mainframe, width=12,text="ButtonTest",
command=lambda: functions.test()).grid(
column=5, row=5, sticky=SE)
for child in mainframe.winfo_children():
child.grid_configure(padx=5, pady=5)
root.mainloop()
功能
def test():
period = 0
while True:
if (period) <=100:
time.sleep(1)
period +=1
print(period)
else:
print("100 seconds has passed")
break
上面会发生的是,当循环运行时,应用程序会崩溃。如果在这段时间过去后我在 else 语句中插入一个中断,一切都会正常工作。我希望用户能够在循环中单击,因为此 GUI 将运行许多不同的功能。