Skip to main content

Functions for centering tkinter windows on parent or on screen

Project description

Center tk window

A small library for centering tkinter windows on their parent or on the screen.

Installation

To install run the following command: pip install center_tk_window

Usage

import tkinter
import center_tk_window

root_window = tkinter.Tk()
window_to_center = tkinter.Toplevel(root_window)

# Center a window on its parent unless it is the root window in which case it will be centered on screen.
center_tk_window.center(root_window, window_to_center)

# Center a window on its parent
center_tk_window.center_on_parent(root_window, window_to_center)

# Center a window on the screen
center_tk_window.center_on_screen(window_to_center)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

center_tk_window-1.0.0.tar.gz (1.7 kB view hashes)

Uploaded Source

Built Distribution

center_tk_window-1.0.0-py3-none-any.whl (2.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page