I would like the widgets on the window to expand as you expand the window. I know you can do it with the pack method but I'm using the grid method to arange my widgets.
Pack Method:
label = Label(root, text="Some Text")
label.pack(expand=1, fill=BOTH)
Grid Method I'm using:
self.inventoryLabel = Label(self.root, text="\nInventory")
self.inventoryLabel.grid(row=3, column=15, columnspan=15, rowspan=1)