tkinter 窗口居中
时间: 2023-05-19 21:04:44 浏览: 221
python tkinter界面居中显示的方法
回答:可以使用以下代码将 tkinter 窗口居中:
```python
import tkinter as tk
root = tk.Tk()
# 获取屏幕宽度和高度
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
# 获取窗口宽度和高度
win_width = 400
win_height = 300
# 计算窗口左上角的坐标
x = (screen_width - win_width) // 2
y = (screen_height - win_height) // 2
# 设置窗口大小和位置
root.geometry("{}x{}+{}+{}".format(win_width, win_height, x, y))
root.mainloop()
```
阅读全文