web-dev-qa-db-ja.com

Tkinterウィンドウが開く場所を指定する方法は?

画面サイズに基づいて、Tkinterウィンドウにどこを開くかを指示するにはどうすればよいですか?真ん中に開けてほしい。

47
xxmbabanexx

この答えは レイチェルの答え に基づいています。彼女のコードは元々機能しませんでしたが、少し調整することで間違いを修正することができました。

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
69
xxmbabanexx

これを試して

import tkinter as tk


def center_window(width=300, height=200):
    # get screen width and height
    screen_width = root.winfo_screenwidth()
    screen_height = root.winfo_screenheight()

    # calculate position x and y coordinates
    x = (screen_width/2) - (width/2)
    y = (screen_height/2) - (height/2)
    root.geometry('%dx%d+%d+%d' % (width, height, x, y))


root = tk.Tk()
center_window(500, 400)
root.mainloop()

ソース

33
Rachel Gallen
root.geometry('250x150+0+0')

最初の2つのパラメーターは、ウィンドウの幅と高さです。最後の2つのパラメーターは、xおよびyスクリーン座標です。必要なx座標とy座標を指定できます

17
LordDraagon