Open In App

How to Set a Tkinter Window With a Constant Size?

Prerequisite:

The task here is to produce a Tkinter window with a constant size. A window with a constant size cannot be resized as per users’ convenience, it holds its dimensions rigidly. A normal window on the other hand can be resized.



Approach

Syntax:



Here, height and width are in pixels.

minsize(height, width)

In Tkinter, minsize() method is used to set the minimum size of the Tkinter window. Using this method a user can set window’s initialized size to its minimum size, and still be able to maximize and scale the window larger.

maxsize(height, width)

This method is used to set the maximum size of the root window. User will still be able to shrink the size of the window to the minimum possible.

Program 1: Creating a normal window




# Import module
from tkinter import *
 
# Create object
root = Tk()
 
# Adjust size
root.geometry("400x400")
 
# Execute tkinter
root.mainloop()

Output:

 

Program 2: Creating a window with constant size




# Import module
from tkinter import *
 
# Create object
root = Tk()
 
# Adjust size
root.geometry("400x400")
 
# set minimum window size value
root.minsize(400, 400)
 
# set maximum window size value
root.maxsize(400, 400)
 
# Execute tkinter
root.mainloop()

Output:


Article Tags :