Re: [PythonCE] Tkinter captures the little "X" close window button?

2008-03-06 Thread Jim Walsh
I think my problem is the use of overrideredirect. I want my pythonce Tkinter window to look like all good WindowsCE windows: using the top of the screen as the title bar and the little X up there. If I use: root=Tk() root.wm_state('zoomed') I get a pretty big window but still with a

[PythonCE] self.protocol?

2008-03-06 Thread Jim Walsh
May I ask what the "self" is in your example. I don't know the protocol method? Thanks, Jim W Frédéric Mantegazza-2 wrote: > > On mercredi 05 mars 2008, Jim Walsh wrote: > >> I want to do something when the user taps the little "X" in the upper >> right hand corner. Can we do the default ac

Re: [PythonCE] self.protocol?

2008-03-06 Thread Frédéric
Le 6/3/2008, "Jim Walsh" <[EMAIL PROTECTED]> a écrit: >May I ask what the "self" is in your example. I don't know the protocol >method? Have a look at: http://effbot.org/tkinterbook/tkinter-events-and-bindings.htm#protocols My object is a toplevel widget... ___