Questions tagged [tkinter-layout]
378 questions
-3
votes
1 answer
Is it possible to dynamically scale a tkinter window?
For my current Python project, I usually work at college on an x sized monitor, however when I want to work on it at home I have a much smaller screen. The majority of my widgets are currently sized with height and width parameters, and so when I…

JRandall26
- 7
- 5
-3
votes
1 answer
Nested layouts with Tkinter
The Tk documentation says (last section) that nested layouts can be achieved using tk.frame.
The following small example is not working as expected, instead of:
import tkinter as tk
window = tk.Tk()
window.geometry('250x100')
# first level,…

Mikhail Poda
- 5,742
- 3
- 39
- 52
-3
votes
1 answer
How to check if it has a class running?
I made this basic code just to send here to see if I could find a solution.
I wanted the code to do the following: when I pressed the button press it calls the other class with the other button and if I press the button again it will check if the…

Giovanni Felicio
- 3
- 1