Re: [Tkinter-discuss] Help: How I can to disable the maxbutton of a window?

2005-01-09 Thread Jeff Epler
The wm_maxsize, wm_minsize, and wm_resizable methods of Toplevel widgets may allow you to do what you want. For instance, when I create a windw and set wm_resizble(0,0), the maximize decoration is removed from the window (and greyed out in the window's menu, and the keystroke is disabled), and the

[Tkinter-discuss] Help: How I can to disable the maxbutton of a window?

2005-01-09 Thread Jorge Constanzo
There is no more to say. I've the following code: from Tkinter import * window = Tk() window.mainloop() It's very simple, this program open a new empty window, but I need to disable the maxbutton of this window and I don't know how to do it. If somebody knows it, I will thank for much its help