ALAN GAULD wrote:
I still am having trouble understanding the use of "master" in
Tkinter. I think the problem is I can't find any reference that explains the
concept around master,
If you read the GUI topic in my tutorial it explains the concept
of a containment tree that is common to ost GU
> I still am having trouble understanding the use of "master" in
> Tkinter. I think the problem is I can't find any reference that explains the
> concept around master,
If you read the GUI topic in my tutorial it explains the concept
of a containment tree that is common to ost GUI frameworks
Alan Gauld wrote:
"Jim Byrnes" wrote in
When reading code examples I see things like
theframe.master.title('spam)
def __init__(self, master):
frame = Frame(master)
When I encounter these I tend to get bogged down trying to decide if
"master" has special meaning or is just a name the
"Jim Byrnes" wrote in
When reading code examples I see things like
theframe.master.title('spam)
def __init__(self, master):
frame = Frame(master)
When I encounter these I tend to get bogged down trying to decide if
"master" has special meaning or is just a name the author has
cho
On Wed, 9 Jun 2010 02:38:28 am Jim Byrnes wrote:
> When reading code examples I see things like
> theframe.master.title('spam) or
> def __init__(self, master):
> frame = Frame(master)
>
> When I encounter these I tend to get bogged down trying to decide if
> "master" has special meaning or is
When reading code examples I see things like
theframe.master.title('spam) or
def __init__(self, master):
frame = Frame(master)
When I encounter these I tend to get bogged down trying to decide if
"master" has special meaning or is just a name the author has chosen.
For example is it simila