Tagged Questions
1
vote
1answer
72 views
python tkinter packing
Could someone please explain why when you have an plain widget as one line Code A works
Entry(root, width=10).pack(side=LEFT,anchor=W)
but when you name it or attach a command to it, Code A no ...
1
vote
1answer
456 views
In Tk with Python, how do I specify a Frame or Canvas to resize with my window?
I'm totally new to Tk and the Packing concept, so bear with me. Here is my code:
from Tkinter import *
class frm_main:
def __init__(self, parent):
self.frame = Frame(parent, bg="green") ...