I’m trying to center a tkinter window. I know I can programatically get the size of the window and the size of the screen and use that to set the geometry, but I’m wondering if there’s a simpler way to center the window on the screen.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can try to use the methods
winfo_screenwidthandwinfo_screenheight, which return respectively the width and height (in pixels) of yourTkinstance (window), and with some basic math you can center your window:I am calling
update_idletasksmethod before retrieving the width and the height of the window in order to ensure that the values returned are accurate.Tkinter doesn’t see if there are 2 or more monitors extended horizontal or vertical. So, you ‘ll get the total resolution of all screens together and your window will end-up somewhere in the middle of the screens.
PyQt from the other hand, doesn’t see multi-monitors environment either, but it will get only the resolution of the Top-Left monitor (Imagine 4 monitors, 2 up and 2 down making a square). So, it does the work by putting the window on center of that screen. If you don’t want to use both, PyQt and Tkinter, maybe it would be better to go with PyQt from start.