본문 바로가기
파이썬

파이썬 Tkinter 창이 열리는 위치를 지정하는 방법은 무엇입니까?

by º기록 2021. 1. 26.
반응형

화면 크기에 따라 Tkinter 창에 열 위치를 어떻게 알릴 수 있습니까? 중간에 열고 싶습니다.

 

해결 방법

 


import tkinter as tk


root = tk.Tk() # create a Tk root window

w = 800 # width for the Tk root
h = 650 # height for the Tk root

# get screen width and height
ws = root.winfo_screenwidth() # width of the screen
hs = root.winfo_screenheight() # height of the screen

# calculate x and y coordinates for the Tk root window
x = (ws/2) - (w/2)
y = (hs/2) - (h/2)

# set the dimensions of the screen 
# and where it is placed
root.geometry('%dx%d+%d+%d' % (w, h, x, y))

root.mainloop() # starts the mainloop

 

참조 페이지 https://stackoverflow.com/questions/14910858

 

 

반응형

댓글