我有一个内容发生变化的窗口。有时内容比窗口大,所以窗口会扩展以适应它的孩子。但是,当我使用对“几何”的调用使窗口居中时,窗口不再调整大小。下面,您将找到说明这一点的代码。
如果您注释掉延迟的 center() 函数调用,您会注意到窗口会扩展以适应其内容。如果您保持原样,则窗口居中,但不再扩展以适应其内容。
是否可以将窗口居中并让它继续调整大小以适应其内容?
from Tkinter import *
import ttk
def center(root):
w = root.winfo_screenwidth()
h = root.winfo_screenheight()
rootsize = tuple(int(_) for _ in root.geometry().split('+')[0].split('x'))
x = w/2 - rootsize[0]/2
y = h/2 - rootsize[1]/2
root.geometry("%dx%d+%d+%d" % (rootsize + (x, y)))
root = Tk()
var = StringVar()
var.set('Small Text')
label = ttk.Label(root, textvariable=var)
label.grid(column=0, row=0)
# Change the text label in a couple of seconds.
def changeit():
var.set('BIG TXT - ' * 5)
root.after(2000, changeit)
# Comment out this center call and the label expands.
root.after(100, lambda: center(root))
root.mainloop()