Python Forum
Help me understand this... (Classes and self).
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help me understand this... (Classes and self).
#10
(Mar-22-2019, 11:33 PM)Larz60+ Wrote:
Quote:I am trying to understand the process by which widgets are added to the GUI using classes in this manner.
You really should spend some time learning about classes in general.
a widget is a class as a matter of fact everything in python is a class
To show this, consider this example:
>>> a = 5
>>> type(a)
<class 'int'>
>>>
a is an instance of class int
as for widgets:
>>> import tkinter
>>> root = tkinter.Tk()
>>> type(root)
<class 'tkinter.Tk'>
>>> label_a = tkinter.Label(text='abc')
>>> type(label_a)
<class 'tkinter.Label'>
>>> # If you want to see methods and attributes for Label:
>>> help(tkinter.Label)
...
here are some tutorials on classes:
Class Basics
Class Intermediate: Inheritance
Class Intermediate: Operator Overloading
Classes [advanced]: Dependent attributes (and Descriptors)
Classes [advanced]: Descriptors (managed attributes)

Reading up...

Search results for OOP and Python related material is flooded with all sorts of Udemy-related things. The docs don't seem to explain things in a way I can understand it, as most documentation I've seen tries to explain as little as possible.

(Mar-23-2019, 12:16 AM)Yoriz Wrote:
(Mar-22-2019, 09:05 PM)Ceegen Wrote: what determines which frame that widget belongs to?
when a widget is created it is passed a parent, the created widgets __init__ method then set the passed in widget as it parent, the widget then belongs to the passed in parent.

Okay. I'm going to go try a few things now in the code and see if I really understand what you're saying.

If I have any more questions as a result of that, I'll just come back to this thread.


Thanks x2.
Reply


Messages In This Thread
RE: Help me understand this... (Classes and self). - by Ceegen - Mar-23-2019, 10:22 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Trying to understand classes menator01 7 3,478 Oct-27-2019, 04:26 PM
Last Post: menator01
Question Helping understand classes Miraclefruit 10 6,536 Nov-27-2017, 01:58 PM
Last Post: Windspar
  Using classes? Can I just use classes to structure code? muteboy 5 5,236 Nov-01-2017, 04:20 PM
Last Post: metulburr

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020