tkinter获取屏幕大小
时间: 2023-08-05 21:06:57 浏览: 124
获取屏幕尺寸
你可以使用Tkinter的`Tk()`方法创建一个窗口对象,然后通过`winfo_screenwidth()`和`winfo_screenheight()`方法获取屏幕的宽度和高度。下面是一个示例代码:
```python
import tkinter as tk
root = tk.Tk()
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
print("屏幕宽度:", screen_width)
print("屏幕高度:", screen_height)
root.mainloop()
```
该代码将创建一个无窗口的Tkinter窗口对象,并获取屏幕的宽度和高度。
阅读全文