Python Forum
[Tkinter] Widgets position - 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] Widgets position (/thread-5337.html)



Widgets position - antoniojescobar - Sep-29-2017

Hello,last week I started to make a GUI with the Tkinter library.Now I'm trying to make that the position of the widgets adjust itself to the size of the screen when I maximize and minimize it, how can I do it?


RE: Widgets position - Larz60+ - Sep-29-2017

Geometry is a difficult thing to grasp on tkinter. I have trouble, and have used it a lot.
Wxpython's phoenix version is evolving quickly, and their geometry is a breeze in
comparison.
You should take a look,there is a gallery here: https://wxpython.org/Phoenix/docs/html/gallery.html


RE: Widgets position - antoniojescobar - Sep-29-2017

I will try with it,thank you¡