我在互联网上看了很多东西,但是找不到有用的解决方案。
我想再次打开在主循环中已定义的Tkinter(Python)
中带有函数的窗口。
from tkinter import *
def first():
root # Here I like to open the root window.
def next():
root.destroy()
root2 = Tk()
n = Button(text="first window",command=root).pack()
root = Tk()
b = Button(text="nächstes Fenster",command=next).pack()
mainloop()