使用tkinter画GUI时需要让窗口自动居中,以下便是实现方法:
# 通过win32api获取系统屏幕的分辨率
def get_system_metrics():
from win32api import GetSystemMetrics
return GetSystemMetrics(0),GetSystemMetrics(1)
# 传入窗口大小(分辨率)计算出窗口居中的位置
def get_window_positons(width,height):
system_metrics =get_system_metrics()
window_x_position = (system_metrics[0] - width)//2
window_y_position =