Answers for "change window size tkinter"

8

set window size tkinter

# Change window_name to the name of the window object, i.e. root
window_name.geometry("500x500")
# To ensure widgets resize:
widget_name.pack(fill="both", expand=True)
Posted by: Guest on February-27-2020
3

get size of window tkinter

# Where w is a widget:
w.winfo_height()
w.winfo_width()
Posted by: Guest on March-10-2020
5

python tkinter define window size

window = Tk()
#set window size
window.geometry("widthxheight")
Posted by: Guest on June-28-2020
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
0

python tkinter window size

#import statement
from tkinter import *
#create GUI Tk() variable
gui = Tk()
#set window size
gui.geometry("widthxheight")
Posted by: Guest on June-23-2020
0

tkinter window size position

window = Tk() 	# or window = TopLevel()
 # "350x150" == window size (350 pixels wide and 150 pixels high)
 # "+220+80" == window position (220 pixels from the left screen margin and
 # 				80 pixels from the top screen margin
  window.geometry("350x150+220+80")
Posted by: Guest on March-25-2021

Code answers related to "change window size tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language