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)
Share
Post a Comment
for "Using Entry Box With Tkinter In Grid Manager?"
Post a Comment for "Using Entry Box With Tkinter In Grid Manager?"