Reputation: 6063
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
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