我正在制作全屏程序,而.columnconfigure可以正常工作,但.row配置不起作用吗?
from Tkinter import *
root = Tk()
w, h = root.winfo_screenwidth(), root.winfo_screenheight()
root.overrideredirect(1)
root.geometry("%dx%d+0+0" % (w, h))
root.bind("<Escape>",quit)
root.config(bg="black")
root.columnconfigure(1,weight=1)
root.columnconfigure(2,weight=1)
root.columnconfigure(3,weight=1)
root.columnconfigure(4,weight=1)
root.rowconfigure(1,weight=1)
root.rowconfigure(2,weight=1)
root.rowconfigure(3,weight=1)
root.rowconfigure(4,weight=1)
Label(text="hey").grid(row=0, column=1,sticky="WENS")
Label(text="hey").grid(row=0, column=2,sticky="WENS")
Label(text="hey").grid(row=0, column=3,sticky="WENS")
Label(text="hey").grid(row=0, column=4,sticky="WENS")
root.mainloop()
答案 0 :(得分:1)
您总是在第0行添加标签。但是您将第1行配置为4.从不配置0。
这可能就是为什么看起来rowconfigure不起作用。