Answers for "set windows position tkinter without change size"

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

Python Answers by Framework

Browse Popular Code Answers by Language