Im trying to put a large label at the top of the window in the middle, then 3 Option menus evenly spaced out below it. I can't get the menus to span across the entire window. I'm not sure if what I'm doing wrong is having
root.geometry("800x600")
at the bottom. Everything is evenly spaced but it's all pushed to the left side of the window, instead of filling the whole thing. I haven't gotten to the next part where I will be binding functions that will display paragraphs of text underneath each of the menus, which is why I want the window so big.
here is my code:
from tkinter import *
from tkinter import messagebox
root=Tk()
topFrame=Frame(root)
bottomFrame=Frame(root)
#The first label
lbl=Label(root,text="Pick a Decade",bg="turquoise",fg="hot pink",font= ("Times","40","bold italic"))
lbl.grid(row=1,column=1)
#Functions
def fifties(s):
if s=="Intro":
lbl=Label(root,text="1950's intro",bg="turquoise")
lbl.grid(column=1)
if s=="Political":
lbl=Label(root,text="1950's politcal",bg="turquoise")
lbl.grid(column=1)
if s=="Economic":
lbl=Label(root,text="1950's economic",bg="turquoise")
lbl.grid(column=1)
if s=="Social":
lbl=Label(root,text="1950's social",bg="turquoise")
lbl.grid(column=1)
if s=="Technological":
lbl=Label(root,text="1950's technological",bg="turquoise")
lbl.grid(column=1)
if s=="Aesthetic":
lbl=Label(root,text="1950's aesthetic",bg="turquoise")
lbl.grid(column=1)
def sixties(s):
if s=="Intro":
lbl=Label(root,text="1960's intro")
lbl.grid(column=1,row=3)
if s=="Political":
lbl=Label(root,text="1960's politcal")
lbl.grid(column=1,row=3)
if s=="Economic":
lbl=Label(root,text="1960's economic")
lbl.grid(column=1,row=3)
if s=="Social":
lbl=Label(root,text="1960's social")
lbl.grid(column=1,row=3)
if s=="Technological":
lbl=Label(root,text="1960's technological")
lbl.grid(column=1,row=3)
if s=="Aesthetic":
lbl=Label(root,text="1960's aesthetic")
lbl.grid(column=1,row=3)
def seventies(s):
if s=="Intro":
lbl=Label(root,text="1970's intro")
lbl.grid(column=2,row=3)
if s=="Political":
lbl=Label(root,text="1970's political")
lbl.grid(column=2,row=3)
if s=="Economic":
lbl=Label(root,text="1970's economic")
lbl.grid(column=2,row=3)
if s=="Social":
lbl=Label(root,text="1970's social")
lbl.grid(column=2,row=3)
if s=="Technological":
lbl=Label(root,text="1970's technological")
lbl.grid(column=2,row=3)
if s=="Aesthetic":
lbl=Label(root,text="1970's aesthetic")
lbl.grid(column=2,row=3)
#Menus
v=StringVar(root)
v.set("1950's")
a=OptionMenu(root,v,"Intro","Political","Economic","Social","Technological","Aesthetic",command=fifties)
a.grid(column=0,row=2)
v=StringVar(root)
v.set("1960's")
a=OptionMenu(root,v,"Intro","Political","Economic","Social","Technological","Aesthetic",command=sixties)
a.grid(column=1,row=2)
v=StringVar(root)
v.set("1970's")
a=OptionMenu(root,v,"Intro","Political","Economic","Social","Technological","Aesthetic",command=seventies)
a.grid(column=2,row=2)
#Root
root.configure(background="turquoise")
root.geometry("800x600")
root.mainloop()
The labels inside the functions that say "1950's social" etc. etc. are going to be the large paragraphs.
As default cells in grid have no size. You can only set minimal size using
To create big header you can connect 3 cells
You can also use widget to cell size using
sticky='we'
grid(..., sticky='we')
w
=west/left
,e
=east/right
Working example: