Hi,
Im a novice in Python, using Tkinter for the GUI developement.
I am trying to figure out how to create my frame such that you cannot exit using the title little 'x' in the corner.
In fact I dont want it at all!
I did try overriding it by
def DontQuit(self):
print 'Sorry,not going to quit!'
top.protocol("WM_DELETE_WINDOW", lambda:self.DontQuit())
where I refused to destroy the frame (and it worked), but is there any way I can take out the title bar altogether?
Any ideas?
Thanks!
Pree