当使用Tkinter作为常规窗口时,文本窗口小部件按预期工作,可以输入。
from Tkinter import *
root = Tk()
T = Text(root, height=2, width=30)
T.pack()
T.insert(END, "Just a text Widget\nin two lines\n")
mainloop()
但是,如果我们将此应用程序设为全屏:
from Tkinter import *
root = Tk()
root.attributes("-fullscreen", True)
T = Text(root, height=2, width=30)
T.pack()
T.insert(END, "Just a text Widget\nin two lines\n")
mainloop()
并尝试键入文本框,它将无法工作,键将显示在终端中。为什么会这样,并且有没有solutoin?