Tkinter question
Greg Ewing
greg.ewing at compaq.com
Thu Jul 22 17:12:24 EDT 1999
More information about the Python-list mailing list
Thu Jul 22 17:12:24 EDT 1999
- Previous message (by thread): Tkinter question
- Next message (by thread): [CFP:] OOPSLA'99 Workshop
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Joel Davis wrote:
>
> w = int( thecanvas.cget("width") )
>
> this works fine.. except when I resize the window, this still returns
> the width that the canvas was when it was created.
w = int(thecanvas.winfo_width())
Greg
- Previous message (by thread): Tkinter question
- Next message (by thread): [CFP:] OOPSLA'99 Workshop
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list