我有这个代码在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( )
但是,不想阻止主翻译,我该怎么办? (我应该使用单独的流程吗?)