如何用tkinter实现自动适应不同分辨率
root =tk.Tk()root.title('请输入你的树维账号和密码')
root.geometry("550x120+450+250")
我现在就是这样单纯的尺寸。有时候别的电脑会大小不一样,那么怎么能实现自动修改分辨率 import tkinter as tk
root = tk.Tk()
root.title('请输入你的树维账号和密码')
screenwidth = root.winfo_width()
screenheight = root.winfo_height()
root.geometry(f"{screenwidth}x{screenheight}+450+250")
tk.mainloop() 白two 发表于 2021-9-20 14:32
兄弟, root.winfo_width() 是窗口大小,不是屏幕分辨率
import tkinter as tk
root = tk.Tk()
root.title('请输入你的树维账号和密码')
screenwidth = root.winfo_screenwidth() // 2
screenheight = root.winfo_screenheight() // 2
root.geometry(f"{screenwidth}x{screenheight}+450+250")
tk.mainloop()
页:
[1]