Answers for "how to disable resize in tkinter"

8

tkinter how to make a root non rezizable

root.resizable(False, False)
Posted by: Guest on May-26-2020
-1

how to disable resizing in tkinter

#root=tk()
root.resizable(False, False)
Posted by: Guest on March-19-2021
1

how to track window size while resizing in tkinter

from Tkinter import *

# create a canvas with no internal border
canvas = Canvas(bd=0, highlightthickness=0)
canvas.pack(fill=BOTH, expand=1)

# track changes to the canvas size and draw
# a rectangle which fills the visible part of
# the canvas

def configure(event):
    canvas.delete("all")
    w, h = event.width, event.height
    print(w)
    print(h)
    xy = 0, 0, w-1, h-1
    canvas.create_rectangle(xy)
    canvas.create_line(xy)
    xy = w-1, 0, 0, h-1
    canvas.create_line(xy)

canvas.bind("<Configure>", configure)

mainloop()
Posted by: Guest on September-01-2020
1

how to make a resizable python tkinter window have a limit

win.wm_minsize(180, 120)
#Change the two numbers to the minimum window width and minimum window height.
Posted by: Guest on September-01-2020

Code answers related to "how to disable resize in tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language