Skip to content Skip to sidebar Skip to footer

Cannot Use Geometry Manager Grid Inside . Which Already Has Slaves Managed By Pack

So I'm writing a small application, and I get this error: cannot use geometry manager grid inside . which already has slaves managed by pack import tkinter as tk from tkinter im

Solution 1:

The widgets in your pages have the wrong parent. You aren't specifying a parent so it defaults to the root window, and you are using pack in the root window.


Post a Comment for "Cannot Use Geometry Manager Grid Inside . Which Already Has Slaves Managed By Pack"