How to Center a Tkinter window

1. Import the library

import tkinter as tk

2. Create the window

root = tk.Tk()

3. Get the screen size

screen_width = root.winfo_screenwidth()
screen_height = root.winfoscreen_screenheight()

4. Set the window size

window_width = 400
window_height = 300

5. Calculate the position to center window

x = (screen_width - window_width) // 2
y = (screen_height - window_height) // 2

6. Set the window size and position

root.geometry(f'{window_width}x{window_height}+{x}+{y}')

7. Show the window

root.mainloop()

8. Full code

import tkinter as tk

# Create the window
root = tk.Tk()

# Get the screen size
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()

# Set the window size
window_width = 400
window_height = 300 

# Calculate the x and y coordinates to center the window
x = (screen_width - window_width) // 2
y = (screen_height - window_height) // 2

# Set the window's geometry (width x height + x_offset + y_offset)
root.geometry(f'{window_width}x{window_height}+{x}+{y}')

# Show the window
root.mainloop()

Leave a Reply

Your email address will not be published. Required fields are marked *