Hide a frame : Frame « GUI Tk « Python






Hide a frame


from Tkinter import *

class Alarm(Frame):
    def repeater(self):                 
        self.bell()                     
        self.stopper.flash()            
        self.after(self.msecs, self.repeater) 
    def __init__(self, msecs=1000):           
        Frame.__init__(self)
        self.msecs = msecs
        self.pack()
        stopper = Button(self, text='Stop the beeps!', command=self.quit)
        stopper.pack()
        stopper.config(bg='navy', fg='white', bd=8) 
        self.stopper = stopper
        self.repeater()


class AlarmWithDraw(Alarm):
    def repeater(self):                           
        self.bell()                               
        if self.master.state() == 'normal':       
            self.master.withdraw()                
        else:                                     
            self.master.deiconify()               
            self.master.lift()                    
        self.after(self.msecs, self.repeater)     

if __name__ == '__main__': AlarmWithDraw().mainloop()     


           
       








Related examples in the same category

1.Change Frame titleChange Frame title
2.Frame action: IconifyFrame action: Iconify
3.Frame action: closeFrame action: close
4.Creating a windowCreating a window
5.Default top level root windowDefault top level root window
6.A child of root windowA child of root window
7.Transient window of rootTransient window of root
8.Frame without decorationsFrame without decorations
9.Set Frame background colorSet Frame background color
10.Geometry Window Manager methodGeometry Window Manager method
11.Set frame sizeSet frame size
12.Add toolbar to a windowAdd toolbar to a window
13.Add menu to a windowAdd menu to a window
14.Capturing clicks in a windowCapturing clicks in a window
15.subclasses frame: attach widgets to selfsubclasses frame: attach widgets to self
16.Subclass Frame and use itSubclass Frame and use it
17.Use Frame subclassUse Frame subclass
18.Redefine call method in GUI subclassRedefine call method in GUI subclass
19.Framework for a single document interfaceFramework for a single document interface
20.Two independent windows,but part of same process Two independent windows,but part of same process
21.Two independent root windowsTwo independent root windows
22.WM_DELETE_WINDOW messageWM_DELETE_WINDOW message