Skip to content Skip to sidebar Skip to footer

Using Entry Box With Tkinter In Grid Manager?

I'm trying to make a basic GUI using Tkinter and have an entry box next to my label using a Grid manager, but the window is not showing when I run my program if I use .grid() with

Solution 1:

The entry has the wrong parent:

self.showName = Entry(master)

should be

self.showName = Entry(frame)

Post a Comment for "Using Entry Box With Tkinter In Grid Manager?"