[Tutor] tkinter nested class question

2011-02-01 Thread Elwin Estle
...at least I think it would be nested. Anyway, I have several widget groups that I want to create inside a frame, which is inside a class. I started to just do them with copying and pasting, and changing the values for each one (the first one is commented out, I left it in so you could see

Re: [Tutor] tkinter nested class question

2011-02-01 Thread Alan Gauld
Elwin Estle chrysalis_reb...@yahoo.com wrote from Tkinter import * class Header_item(object): def __init__(self, lab_text = '', lab_width = 5, ent_width = 5, grid_row = 1, grid_col = 1): self.container = Frame() You haven't specified a parent object for the Frame. I suspect the