如何在不阻塞Python的解释器的情况下显示tkinter文本框?

时间:2016-12-09 09:07:04

标签: python tkinter

我有这个代码在Pop up上显示Text:

from Tkinter import *

root = Tk()
S = Scrollbar(root)
T = Text(root, height=4, width=50)
S.pack(side=RIGHT, fill=Y)
T.pack(side=LEFT, fill=Y)
S.config(command=T.yview)
T.config(yscrollcommand=S.set)
quote = """ My tesx
Devoutly to be wished."""
T.insert(END, quote)
mainloop(  )

但是,不想阻止主翻译,我该怎么办? (我应该使用单独的流程吗?)

0 个答案:

没有答案