Python Forum
Using a class to create instances of Tkinter Toplevel() windows
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Using a class to create instances of Tkinter Toplevel() windows
#1
I'm a newbie at python and coding in general. I am messing around with Tkinter, trying to understand it. Before I go any further can someone tell me if it's ok practice to create a class to initialise Toplevel() windows?

This is my code, please pull it to pieces:

from tkinter import *

class TopLevelWindow():
    def __init__(self, master, width, height):
        self.master = master
        self.master.geometry("%sx%s+100+100" % (width, height))
        self.master.title("Toplevel Window")


root = Tk()
top1 = Toplevel()
top2 = Toplevel()
TopLevelWindow(top1, "300", "300")
TopLevelWindow(top2, "500", "250")

root.mainloop()
This code works but I really don't know what is happening, I just throw a few keywords together until it worked.
Can someone explain what is happening here where I pas in master and then define self.master as master. Is it even ALLOWED to be a master?

def __init__(self, master, width, height):
    self.master = master
Reply
#2
self is an instance of itself, in your case TopLevelWindow
when you call __init__, you are passing top1 which is an instance of TopLevel, width of 300, and height of 300.

If you passed root instead of top1, there would only be one window.
you can also 'hide' the root window with root.withdraw()

Toplevel creates a new 'root like' window in addition to root

Once top1 is passed to TopLevelWindow, it becomes self.master or TopLevelWindow.master, but it's still the same instance of top1

Then you create yet another instance of TopLevelWindow passing top2 as master

you could of also instantiated TopLevelWindow this way, which may explain a bit more:
TopLevelWindow(master=top1, width="300", height="300")
I try to do this by default, but when cranking out code, often miss doing it. It explains what's what with a single glance.
Reply
#3
(Mar-27-2018, 11:12 AM)Larz60+ Wrote: self is an instance of itself, in your case TopLevelWindow
when you call __init__, you are passing top1 which is an instance of TopLevel, width of 300, and height of 300.

If you passed root instead of top1, there would only be one window.
you can also 'hide' the root window with root.withdraw()

Toplevel creates a new 'root like' window in addition to root

Once top1 is passed to TopLevelWindow, it becomes self.master or TopLevelWindow.master, but it's still the same instance of top1

Then you create yet another instance of TopLevelWindow passing top2 as master

you could of also instantiated TopLevelWindow this way, which may explain a bit more:
TopLevelWindow(master=top1, width="300", height="300")
I try to do this by default, but when cranking out code, often miss doing it. It explains what's what with a single glance.

Hi Larz, thank you very much for the explanation. I think the main thing that's important here is that this seems a legitimate way of creating multi toplevel windows without breaking anything else in Python haha

I can now move forward with my project.

Big Grin
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Help create scrollbar in chatbot with tkinter on python fenec10 6 7,286 Aug-28-2025, 10:38 AM
Last Post: fazanbabar82
  [Tkinter] passing value from tkinter entry to create xml document iqbshaik 7 3,570 Aug-28-2025, 10:32 AM
Last Post: david568
  Trying to access a method from my Toplevel Form avmvldr 1 1,015 Jul-09-2025, 11:59 PM
Last Post: deanhystad
  Tkinter multiple windows in the same window hosierycouch 1 2,006 May-30-2024, 04:28 AM
Last Post: deanhystad
  tkinter two windows instead of one jacksfrustration 7 3,968 Feb-08-2024, 06:18 PM
Last Post: deanhystad
  Tkinter multiple windows in the same window tomro91 1 2,913 Oct-30-2023, 02:59 PM
Last Post: Larz60+
  pass a variable between tkinter and toplevel windows janeik 9 9,010 Oct-05-2023, 04:22 AM
Last Post: janeik
Lightbulb Using Tkinter With Concurrent.Futures / ThreadPoolExecutor Class AaronCatolico1 1 3,590 Dec-14-2022, 08:01 PM
Last Post: deanhystad
Bug [Tkinter] CanĀ“t create a class for frames ThomasFab 5 5,208 Sep-28-2022, 08:44 PM
Last Post: deanhystad
Lightbulb [Tkinter] Tkinter Class Import Module Issue AaronCatolico1 6 9,210 Sep-06-2022, 03:37 PM
Last Post: AaronCatolico1

Forum Jump:

User Panel Messages

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