Python Forum
Tkinter multiple windows in the same window - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: Tkinter multiple windows in the same window (/thread-41020.html)



Tkinter multiple windows in the same window - tomro91 - Oct-30-2023

Hello everyone,

I am trying to develop an application in Tkinter that have one main screen and 4 sub-screens inside the main screen. I want to control this screens (close, minimize and drag them) . Has anyone done this before ?

Thanks in advance


RE: Tkinter multiple windows in the same window - Larz60+ - Oct-30-2023

I would suggest wxpython if you plan to use dragging. I handles drag and drop very well. PyPi, homepage

You can also use Qt (pyside6) PyPi, homepage
Please note that Qt requires license for commercial application, wxpython does not.