我正试图将tkinter窗口居中。我知道我可以以编程方式获取窗口的大小和屏幕的大小,并使用它来设置几何图形,但我想知道是否有一种更简单的方法可以将窗口置于屏幕中心。
答案 0 :(得分:62)
您可以尝试使用方法winfo_screenwidth
和winfo_screenheight
,它们分别返回Tk
实例(窗口)的宽度和高度(以像素为单位),并使用一些基本数学你可以把窗户放在中心位置:
import tkinter as tk
from PyQt4 import QtGui # or PySide
def center(toplevel):
toplevel.update_idletasks()
# Tkinter way to find the screen resolution
# screen_width = toplevel.winfo_screenwidth()
# screen_height = toplevel.winfo_screenheight()
# PyQt way to find the screen resolution
app = QtGui.QApplication([])
screen_width = app.desktop().screenGeometry().width()
screen_height = app.desktop().screenGeometry().height()
size = tuple(int(_) for _ in toplevel.geometry().split('+')[0].split('x'))
x = screen_width/2 - size[0]/2
y = screen_height/2 - size[1]/2
toplevel.geometry("+%d+%d" % (x, y))
toplevel.title("Centered!")
if __name__ == '__main__':
root = tk.Tk()
root.title("Not centered")
win = tk.Toplevel(root)
center(win)
root.mainloop()
我在检索窗口的宽度和高度之前调用update_idletasks
方法,以确保返回的值是准确的。
Tkinter 无法查看是否有2个或更多监视器水平或垂直延伸。因此,您将获得所有屏幕的总分辨率,并且您的窗口将最终显示在屏幕中间的某个位置。
另一方面,PyQt 也看不到多显示器环境,但它只能获得左上方显示器的分辨率(想象4显示器,2上下2和下调2)一个正方形)。因此,它通过将窗口置于该屏幕的中心来完成工作。如果您不想同时使用 PyQt 和 Tkinter ,也许从开始使用PyQt会更好。
答案 1 :(得分:38)
将窗口居中的一般方法是计算窗口左上角像素的相应屏幕坐标:
x = (screen_width / 2) - (window_width / 2)
y = (screen_height / 2) - (window_height / 2)
然而, 因为任何方法返回的窗口宽度和高度不包括最外面的框架,标题和最小/最大/关闭按钮。 它也不包括menu bar(包含文件,编辑等)。幸运的是,有一种方法可以找到这些维度。
这是最基本的功能,它没有考虑上述问题:
def center(win):
win.update_idletasks()
width = win.winfo_width()
height = win.winfo_height()
x = (win.winfo_screenwidth() // 2) - (width // 2)
y = (win.winfo_screenheight() // 2) - (height // 2)
win.geometry('{}x{}+{}+{}'.format(width, height, x, y))
备选方案:winfo_reqwidth()
,winfo_reqheight()
首先,我们想要调用窗口的update_idletasks()
方法
在检索任何几何体之前,确保返回的值是准确的。
了解与geometry strings方法一起使用的geometry()
非常重要
前半部分是窗口的宽度和高度不包括外框,
而后半部分是外框的左上角x和y坐标。
有四种方法可以让我们确定外框的尺寸
winfo_rootx()
会向我们显示窗口的左上角x坐标,不包括外框。
winfo_x()
将为我们提供外框的左上角x坐标
它们的区别在于外框的宽度。
frm_width = win.winfo_rootx() - win.winfo_x()
win_width = win.winfo_width() + (2*frm_width)
winfo_rooty()
和winfo_y()
之间的区别将是我们的标题栏/菜单栏的高度。
titlebar_height = win.winfo_rooty() - win.winfo_y()
win_height = win.winfo_height() + (titlebar_height + frm_width)
以下是完整的功能,在一个工作示例中:
import tkinter # Python 3
def center(win):
"""
centers a tkinter window
:param win: the root or Toplevel window to center
"""
win.update_idletasks()
width = win.winfo_width()
frm_width = win.winfo_rootx() - win.winfo_x()
win_width = width + 2 * frm_width
height = win.winfo_height()
titlebar_height = win.winfo_rooty() - win.winfo_y()
win_height = height + titlebar_height + frm_width
x = win.winfo_screenwidth() // 2 - win_width // 2
y = win.winfo_screenheight() // 2 - win_height // 2
win.geometry('{}x{}+{}+{}'.format(width, height, x, y))
win.deiconify()
if __name__ == '__main__':
root = tkinter.Tk()
root.attributes('-alpha', 0.0)
menubar = tkinter.Menu(root)
filemenu = tkinter.Menu(menubar, tearoff=0)
filemenu.add_command(label="Exit", command=root.destroy)
menubar.add_cascade(label="File", menu=filemenu)
root.config(menu=menubar)
frm = tkinter.Frame(root, bd=4, relief='raised')
frm.pack(fill='x')
lab = tkinter.Label(frm, text='Hello World!', bd=4, relief='sunken')
lab.pack(ipadx=4, padx=4, ipady=4, pady=4, fill='both')
center(root)
root.attributes('-alpha', 1.0)
root.mainloop()
防止看到窗口在屏幕上移动的一种方法是使用
.attributes('-alpha', 0.0)
使窗口完全透明,然后在窗口居中后将其设置为1.0
。在Windows 7上,使用withdraw()
或iconify()
后来deiconify()
似乎无法正常工作。请注意,我使用deiconify()
作为激活技巧窗口。
答案 2 :(得分:18)
Tk提供了一个辅助函数,可以像tk::PlaceWindow
那样执行此操作,但我不相信它已作为Tkinter中的包装方法公开。您可以使用以下内容来构建窗口小部件:
from tkinter import *
app = Tk()
app.eval('tk::PlaceWindow %s center' % app.winfo_pathname(app.winfo_id()))
app.mainloop()
此功能也应正确处理多个显示。它还有一些选项可以在另一个小部件或相对于指针(用于放置弹出菜单)的中心位置,这样它们就不会从屏幕上掉下来。
答案 3 :(得分:7)
我找到了同一问题的解决方案on this site
from tkinter import Tk
from tkinter.ttk import Label
root = Tk()
Label(root, text="Hello world").pack()
# Apparently a common hack to get the window size. Temporarily hide the
# window to avoid update_idletasks() drawing the window in the wrong
# position.
root.withdraw()
root.update_idletasks() # Update "requested size" from geometry manager
x = (root.winfo_screenwidth() - root.winfo_reqwidth()) / 2
y = (root.winfo_screenheight() - root.winfo_reqheight()) / 2
root.geometry("+%d+%d" % (x, y))
# This seems to draw the window frame immediately, so only call deiconify()
# after setting correct window position
root.deiconify()
root.mainloop()
当然,我根据我的目的改变了它,它有效。
答案 4 :(得分:7)
import tkinter as tk
win = tk.Tk() # Creating instance of Tk class
win.title("Centering windows")
win.resizable(False, False) # This code helps to disable windows from resizing
window_height = 500
window_width = 900
screen_width = win.winfo_screenwidth()
screen_height = win.winfo_screenheight()
x_cordinate = int((screen_width/2) - (window_width/2))
y_cordinate = int((screen_height/2) - (window_height/2))
win.geometry("{}x{}+{}+{}".format(window_width, window_height, x_cordinate, y_cordinate))
win.mainloop()
答案 5 :(得分:1)
我使用frame和expand选项。非常简单。我想在屏幕中间有一些按钮。调整窗口和按钮的大小保持在中间。这是我的解决方案。
frame = Frame(parent_window)
Button(frame, text='button1', command=command_1).pack(fill=X)
Button(frame, text='button2', command=command_2).pack(fill=X)
Button(frame, text='button3', command=command_3).pack(fill=X)
frame.pack(anchor=CENTER, expand=1)
答案 6 :(得分:1)
这在Python 3.x中也有效,并使窗口在屏幕上居中:
from tkinter import *
app = Tk()
app.eval('tk::PlaceWindow . center')
app.mainloop()
答案 7 :(得分:0)
使用:
import tkinter as tk
if __name__ == '__main__':
root = tk.Tk()
root.title('Centered!')
w = 800
h = 650
ws = root.winfo_screenwidth()
hs = root.winfo_screenheight()
x = (ws/2) - (w/2)
y = (hs/2) - (h/2)
root.geometry('%dx%d+%d+%d' % (w, h, x, y))
root.mainloop()
答案 8 :(得分:0)
在Python Tkinter中进入窗口 这是tkinter中最简单的事情,因为我们必须知道的是窗口的尺寸以及计算机屏幕的尺寸。我想出了以下代码,可以以某种方式帮助某人,并且我确实添加了一些注释,以便他们可以跟进。
代码
# create a window first
root = Tk()
# define window dimensions width and height
window_width = 800
window_height = 500
# get the screen size of your computer [width and height using the root object as foolows]
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
# Get the window position from the top dynamically as well as position from left or right as follows
position_top = int(screen_height/2 -window_height/2)
position_right = int(screen_width / 2 - window_width/2)
# this is the line that will center your window
root.geometry(f'{window_width}x{window_height}+{position_right}+{position_top}')
# initialise the window
root.mainloop(0)
答案 9 :(得分:0)
此方法是跨平台的,适用于多个监视器/屏幕(以活动屏幕为目标),并且除Tk外不需要任何其他库。根窗口将居中显示,没有任何不必要的“闪烁”或动画:
import tkinter as tk
def get_geometry(frame):
geometry = frame.winfo_geometry()
match = re.match(r'^(\d+)x(\d+)\+(\d+)\+(\d+)$', geometry)
return [int(val) for val in match.group(*range(1, 5))]
def center_window(root):
"""Must be called after application is fully initialized
so that the root window is the true final size."""
# Avoid unwanted "flashing" by making window transparent until fully ready
root.attributes('-alpha', 0)
# Get dimensions of active screen/monitor using fullscreen trick; withdraw
# window before making it fullscreen to preserve previous dimensions
root.withdraw()
root.attributes('-fullscreen', True)
root.update_idletasks()
(screen_width, screen_height, *_) = get_geometry(root)
root.attributes('-fullscreen', False)
# Restore and get "natural" window dimensions
root.deiconify()
root.update_idletasks()
(window_width, window_height, *_) = get_geometry(root)
# Compute and set proper window center
pos_x = round(screen_width / 2 - window_width / 2)
pos_y = round(screen_height / 2 - window_height / 2)
root.geometry(f'+{pos_x}+{pos_y}')
root.update_idletasks()
root.attributes('-alpha', 1)
# Usage:
root = tk.Tk()
center_window(root)
请注意,在修改窗口几何图形的每个点上,必须调用update_idletasks()
来强制操作同步/立即进行。它使用Python 3功能,但如有必要,可以轻松地适应Python 2.x。
答案 10 :(得分:0)
from tkinter import *
root = Tk()
# Gets the requested values of the height and widht.
windowWidth = root.winfo_reqwidth()
windowHeight = root.winfo_reqheight()
print("Width",windowWidth,"Height",windowHeight)
# Gets both half the screen width/height and window width/height
positionRight = int(root.winfo_screenwidth()/2 - windowWidth/2)
positionDown = int(root.winfo_screenheight()/2 - windowHeight/2)
# Positions the window in the center of the page.
root.geometry("+{}+{}".format(positionRight, positionDown))
root.mainloop()