Advertisement
here2share

''' Some of the Binds for Tkinter

Feb 21st, 2021
1,023
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.44 KB | None | 0 0
  1. '''
  2. Some of the Binds for Tkinter --
  3.  
  4. | event                 | name                  |
  5. -------------------------------------------------
  6. | Ctrl-c                | Control-c             |
  7. | Ctrl-/                | Control-slash         |
  8. | Ctrl-\               | Control-backslash     |
  9. | Ctrl+(Mouse Button-1) | Control-1             |
  10. | Ctrl-1                | Control-Key-1         |
  11. | Enter key             | Return                |
  12. | Mouse left-button     | Button-1              |
  13. | Mouse middle-button   | Button-2              |
  14. | Mouse right-button    | Button-3              |
  15. | Any mouse button      | ButtonRelease-1       |
  16. | released              |                       |
  17. | --                    | Home                  |
  18. | Arrow keys            | Up, Down, Left, Right |
  19. | Widget change detect  | Configure             |
  20. | Window exposed        | Expose                |
  21. | Mouse enters widget   | Enter                 |
  22. | Mouse leaves widget   | Leave                 |
  23. | --                    | Key                   |
  24. | --                    | Tab                   |
  25. | Spacebar (*lowercase) | space                 |
  26. | --                    | BackSpace             |
  27. | --                    | KeyRelease-BackSpace  |
  28. | Any key release       | KeyRelease            |
  29. | Escape                | Escape                |
  30. | --                    | F1                    |
  31. | Home                  | Alt-h                 |
  32. '''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement