Lines Matching defs:destroy
28 button = tkinter.Button(frame,text="Exit",command=tk.destroy)
345 master.destroy()
679 def destroy(self):
2362 self.protocol("WM_DELETE_WINDOW", self.destroy)
2364 def destroy(self):
2367 for c in list(self.children.values()): c.destroy()
2368 self.tk.call('destroy', self._w)
2369 Misc.destroy(self)
2613 self.master.children[self._name].destroy()
2633 def destroy(self):
2635 for c in list(self.children.values()): c.destroy()
2636 self.tk.call('destroy', self._w)
2639 Misc.destroy(self)
2681 self.protocol("WM_DELETE_WINDOW", self.destroy)
4049 def destroy(self):
4051 Menubutton.destroy(self)
4632 quit = Button(root, text="QUIT", command=root.destroy)