Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to resize tkinter window

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 by pythonexamples.org #
 
PREVIOUS NEXT
Tagged: #resize #tkinter #window
ADD COMMENT
Topic
Name
2+6 =