반응형
화면 크기에 따라 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
반응형
'파이썬' 카테고리의 다른 글
파이썬 Django에서 선택 항목을 확인란으로 표시하는 방법이 있습니까? (0) | 2021.01.26 |
---|---|
파이썬 How to change the color of certain words in the tkinter text widget? (0) | 2021.01.26 |
파이썬 Python에서 PATH 환경 변수 구분 기호를 얻는 방법은 무엇입니까? (0) | 2021.01.25 |
파이썬 Python에서 Selenium WebDriver로 부분 스크린 샷을 찍는 방법은 무엇입니까? (0) | 2021.01.25 |
파이썬 pandas read_csv의 구분 기호를 불규칙한 구분 기호에 대해보다 유연한 wrt 공백으로 만드는 방법은 무엇입니까? (0) | 2021.01.25 |
댓글