我只是对我简单的Python代码提出了一个简短的问题。我想创建一个GUI,你可以看到,但每次我都使用内置的
.grid()
功能,GUI窗口无法打开,我不知道为什么。 谢谢你的回答
root = Tk()
root.title("Hello World")
label = Label(root, text="Label 1")
label2 = Label(root, text="Label 2")
b = Button(root, text="Hallo")
b1 = Button(root, text="o")
b2 = Button(root, text="k")
b3 = Button(root, text="w")
b4 = Button(root, text="e")
b5 = Button(root, text="l")
b6 = Button(root, text="t")
b7 = Button(root, text="d")
b8 = Button(root, text="u")
label.grid(row=0, column=0)
label2.grid(row=0, column=1)
b.pack()
b1.pack()
b2.pack()
b3.pack()
b4.pack()
b5.pack()
b6.pack()
b7.pack()
root.mainloop()