我有一个小问题,所以我来找你,看看你是否可以帮忙解决它。 我在Python2.7中有以下代码:
# main window
root = tk.Tk()
root.title('My application')
# create the objects in the main window
w = buildWidgetClass(root)
# size of the screen (monitor resolution)
screenWi = root.winfo_screenwidth()
screenHe = root.winfo_screenheight()
# now that widgets are created, find the widht and the height
root.update()
guiWi = root.winfo_width()
guiHe = root.winfo_height()
# position of the window
x = screenWi / 2 - guiWi / 2
y = screenHe / 2 - guiHe / 2
root.geometry("%dx%d+%d+%d" % (guiWi, guiHe, x, y))
所以我创建主窗口(没有任何大小)我在里面插入小部件,然后我定义结果的大小,并将它放在屏幕的中间。
窗口中窗口小部件的数量可能会有所不同,因此产生的大小!
到目前为止,这么好,它有效!我唯一的问题是窗口首先出现在屏幕的左上角,然后重新定位到中心。没什么大不了的,但也不是很专业。
所以我的想法是在窗口小部件创建时隐藏主窗口,然后在定义几何体后显示它。
所以在第一行之后,我补充道:
root.withdraw()
然后在最后:
root.update()
root.deiconify()
但是当窗口重新出现时,它没有被小部件重新调整大小并且大小为1x1 !! 我尝试用 root.iconify()替换 root.withdraw(),窗口正确调整大小,但令人惊讶的是,最终没有取消图标! !
我对此有点失落......
答案 0 :(得分:1)
使用root.winfo_reqwidth
代替root.winfo_width
可能对您有所帮助。
答案 1 :(得分:1)
最后,随着kalgasnik的输入,我有一个工作代码
# main window
root = tk.Tk()
# hide the main window during time we insert widgets
root.withdraw()
root.title('My application')
# create the objects in the main window with .grid()
w = buildWidgetClass(root)
# size of the screen (monitor resolution)
screenWi = root.winfo_screenwidth()
screenHe = root.winfo_screenheight()
# now that widgets are created, find the width and the height
root.update()
# retrieve the requested size which is different as the current size
guiWi = root.winfo_reqwidth()
guiHe = root.winfo_reqheight()
# position of the window
x = (screenWi - guiWi) / 2
y = (screenHe - guiHe) / 2
root.geometry("%dx%d+%d+%d" % (guiWi, guiHe, x, y))
# restore the window
root.deiconify()
非常感谢你们的时间和帮助