Zac Brown
Zac Brown

Reputation: 6063

Tkinter window in bottom right corner

Is it possible to display a Python Tkinter window in the bottom right hand corner of the screen? If so, how?

Upvotes: 2

Views: 2666

Answers (1)

Bryan Oakley
Bryan Oakley

Reputation: 385980

Yes, it is possible. You use the wm_geometry method of the window to specify the geometry (width, height, x and y location) of the window.

Upvotes: 2

Related Questions