How To Track Window Size While Resizing In Tkinter

[Solved] How To Track Window Size While Resizing In Tkinter | Java - Code Explorer | yomemimo.com
Question : how to resize tkinter window

Answered by : tejas-naik

import tkinter
window = tkinter.Tk() # creating the window object
window.title('my first GUI program')
window.minsize(width=600, height=500) # makes the window 500*600
window.mainloop() # keeping the window until we close it

Source : | Last Update : Mon, 08 Feb 21

Question : create exact window size tkinter

Answered by : lewis-p

import tkinter as tk #import the module
window = tk.Tk() #set the window
window.geometry("400x400") #make the window a size (include as a stirng
window.mainloop() #load the window

Source : | Last Update : Tue, 26 Apr 22

Answers related to how to track window size while resizing in tkinter

Code Explorer Popular Question For Java