Horje
how to fix geometry of a window in tkinter Code Example
how to fix geometry of a window in tkinter
from tkinter import *

#creating tkinter window
root=Tk()

#setting window's dimensions
root.geometry('520x520')
root.reziable(0,0) #Don't allow resizing in the x or y direction

root.mainloop()




Python

Related
start index from 1 in python Code Example start index from 1 in python Code Example
how to download excel file from s3 using python Code Example how to download excel file from s3 using python Code Example
python how to copy a 2d array leaving out last column Code Example python how to copy a 2d array leaving out last column Code Example
plot python x axis range Code Example plot python x axis range Code Example
how to get location of word in list in python Code Example how to get location of word in list in python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9