Python Tkinter应用程序适合屏幕

时间:2015-06-21 13:28:09

标签: python tkinter screen

我使用Python的Tkinter模块设计了一个应用程序,在我的17" 屏幕。

有没有办法让这款应用适合较低分辨率的屏幕?我试图在14"屏幕,应用程序不适合。

谢谢。

1 个答案:

答案 0 :(得分:3)

您可以获取屏幕分辨率,然后以root.geometry方式输入它们:

from Tkinker import *

root = Tk()

width, height = root.winfo_screenwidth(), root.winfo_screenheight()

root.geometry('%dx%d+0+0' % (width,height))

root.mainloop()