如何在python中使用Tkinter单击按钮打开一个新窗口?

时间:2016-05-15 13:11:20

标签: python user-interface tkinter

我想在python中创建一个gui应用程序,因为我正在制作这种类型的代码。 我已经厌倦了许多代码,但我无法达到要求。

1 个答案:

答案 0 :(得分:2)

阻止您这样做的原因,请参阅原始帖子here。但基本代码:

import Tkinter as tk

def create_window():
    window = tk.Toplevel(root)

root = tk.Tk()
b = tk.Button(root, text="Create new window", command=create_window)
b.pack()

root.mainloop()