Tkinterを使用してウィンドウを中央に配置する方法
方法1: ウィンドウの幅と高さを取得し、画面の幅と高さを取得して、適切な位置を計算する方法です。import tkinter as tk def center_window(window): window_width = window.winfo_width() window_height = window.winfo_height() screen_width = window.winfo_screenwidth() screen_height = window.winfo_screenheight() x = (screen_width // 2) >>More