Tkinter - centering, positioning new windows
Fredrik Lundh
effbot at telia.com
Sat Mar 11 04:55:59 EST 2000
More information about the Python-list mailing list
Sat Mar 11 04:55:59 EST 2000
- Previous message (by thread): Tkinter question regarding StringVar() usage.
- Next message (by thread): Tkinter - centering, positioning new windows
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Christian Tanzer <tanzer at swing.co.at> wrote: > `wm_geometry' allows setting the size and/or position of a toplevel > window. The argument to it is a string of the form > > "%dx%d+%d+%d" % (width, height, x_position, y_position) better make that: "%dx%d%+d%+d" % (width, height, x_position, y_position) </F>
- Previous message (by thread): Tkinter question regarding StringVar() usage.
- Next message (by thread): Tkinter - centering, positioning new windows
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list