48-tkinter窗口居中

tkinter窗口居中

import tkinter as tk  # 导入tkinter模块

# 计算窗口居中的位置
def get_window_positon(width, height):
    window_x_position = (root.winfo_screenwidth() - width) // 2
    window_y_position = (root.winfo_screenheight() - height) // 2
    return window_x_position, window_y_position

if __name__ == '__main__':
    # 创建一个窗口
    root = tk.Tk()
    # 设置窗口最小大小
    tk_width = 600  # 窗口的宽度
    tk_height = 500 # 窗口的长度
    root.minsize(tk_width, tk_height)
    root.resizable(0, 0)  # 来禁止调节大小

    pos = get_window_positon(tk_width, tk_height) #调用get_window_positon()方法
    root.geometry(f'{tk_width}x{tk_height}+{pos[0]}+{pos[1]}') # 窗口的大小与位置
#  设置标题
    root.title('计算能力训练软件')
    root.mainloop()

 

你可能感兴趣的:(python,python,tkinter窗口居中)