66

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

4

5 に答える 5

100

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

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
于 2013-02-16T16:47:26.627 に答える
43

これを試して

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()

ソース

于 2013-02-16T13:35:25.667 に答える
5

ウィンドウを中央に配置したい場合は、このタイプの関数が役立ちます:

def center_window(size, window) :
    window_width = size[0] #Fetches the width you gave as arg. Alternatively window.winfo_width can be used if width is not to be fixed by you.
    window_height = size[1] #Fetches the height you gave as arg. Alternatively window.winfo_height can be used if height is not to be fixed by you.
    window_x = int((window.winfo_screenwidth() / 2) - (window_width / 2)) #Calculates the x for the window to be in the centre
    window_y = int((window.winfo_screenheight() / 2) - (window_height / 2)) #Calculates the y for the window to be in the centre

    window_geometry = str(window_width) + 'x' + str(window_height) + '+' + str(window_x) + '+' + str(window_y) #Creates a geometric string argument
    window.geometry(window_geometry) #Sets the geometry accordingly.
    return

ここでは、window.winfo_screenwidth関数を使用してwidthデバイス画面の を取得します。また、window.winfo_screenheight関数はheightデバイス画面の を取得するために使用されます。

ここで、この関数を呼び出して、画面の (幅、高さ) をサイズとしてタプルを渡すことができます。

計算は必要に応じてカスタマイズでき、それに応じて変更されます。

于 2020-07-13T06:11:45.687 に答える