5
Python的Tkinter的應用適合我設計了利用Python中的Tkinter模塊的應用程序,在我的17" 屏幕。屏幕
有沒有一種方法,使這個應用程序適合在較低分辨率的屏幕呢?我曾嘗試在14英寸的屏幕上運行它,並且該應用程序不適合。
謝謝。
Python的Tkinter的應用適合我設計了利用Python中的Tkinter模塊的應用程序,在我的17" 屏幕。屏幕
有沒有一種方法,使這個應用程序適合在較低分辨率的屏幕呢?我曾嘗試在14英寸的屏幕上運行它,並且該應用程序不適合。
謝謝。
你可以得到屏幕的分辨率,然後將它們輸入你的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()