如何使用按钮python 3 / Tkinter打开顶层窗口

时间:2017-03-18 16:03:55

标签: python tkinter

width:100%

执行代码时,两个窗口都打开了。

我希望使用根窗口中的按钮打开顶层。

我该怎么做?

1 个答案:

答案 0 :(得分:1)

你从未做过按钮,你可以创建一个按钮并设置命令。

root = Tk()
root.geometry("1600x800+0+0")
root.title("Tronios Exportzendingen")
def set_button():
    invoerscherm = Toplevel()
    invoerscherm.geometry("800x400+0+0")
    invoerscherm.title("Nieuwe Zending Invoeren")
but = Button(text="Press Me", command=set_button)
but.pack()
root.mainloop()