Advertisement
steve-shambles-2109

Escape closes Window

Jan 15th, 2020
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. """Escape closes Window
  2.  
  3.   stevepython.wordpress.com
  4.   code-snippet-vol_42-snip_209
  5.  
  6. source: Unknown
  7. """
  8.  
  9. from tkinter import Tk
  10.  
  11. def esc_win(event):
  12.     """Destroy root window when escape key pressed."""
  13.     root.destroy()
  14.  
  15. root = Tk()
  16. root.title('Press ESC')
  17.  
  18. root.bind('<Escape>', esc_win)
  19. root.focus()
  20.  
  21. root.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement