我使用Python的Tkinter模块设计了一个应用程序,在我的17" 屏幕。
有没有办法让这款应用适合较低分辨率的屏幕?我试图在14"屏幕,应用程序不适合。
谢谢。
答案 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()