在Tkinter中,要使窗口在屏幕上居中显示,可以使用以下方法:
import tkinter as tk
screen_width = tk.Tk().winfo_screenwidth()
screen_height = tk.Tk().winfo_screenheight()
root = tk.Tk()
root.geometry("300x200")
win_width = root.winfo_reqwidth()
win_height = root.winfo_reqheight()
x_coordinate = int((screen_width / 2) - (win_width / 2))
y_coordinate = int((screen_height / 2) - (win_height / 2))
root.geometry(f"300x200+{x_coordinate}+{y_coordinate}")
这样,在运行程序时,Tkinter窗口将会在屏幕上居中显示。
推荐的腾讯云相关产品:
产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云