我似乎无法弄清楚,任何帮助将不胜感激!
这是代码...
def bannergrabber():
top = Toplevel()
top.resizable(0, 0)
top.title("Website Banner Grabber")
top.geometry("300x300")
top.configure(background="black")
text = Text(top)
label2 = Label(top, text="Website:")
label2.config(bg="black")
label2.grid(row=0, pady=5, sticky=W)
text.config(width=25, height=1, bg="black")
text.grid(row=0, column=1, pady=5, padx=5, sticky=W)
b = Button(top, text="Enter", bg="black")
b.grid(row=1, column=0, sticky=W)
c = Button(top, text="Clear", bg="black")
c.grid(row=1, column=1, pady=5, padx=10, stick=W)
top.mainloop()
我想将两个按钮都居中对齐,但是我无法弄清楚,我已经尝试过使用粘性的不同位置,并使用行和列,什么也没做。