tkinter wie man eine root nicht rezizierbar macht
root.resizable(False, False)
IF Studios
root.resizable(False, False)
# window.resizeable(width_bool,height_bool)
window.resizeable(FALSE,FALSE)
# window variable will typically be "root"
# See http://tkdocs.com/tutorial/windows.html#:~:text=window.resizable(FALSE%2CFALSE)
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
win.wm_minsize(180, 120)
#Change the two numbers to the minimum window width and minimum window height.
import tkinter as tk
root = tk.Tk()
root.resizable(width=False, height=False)
root.mainloop()