관리 메뉴

웹개발자의 기지개

[python] tkinter - 이벤트 처리1 - 키보드 이벤트 본문

python

[python] tkinter - 이벤트 처리1 - 키보드 이벤트

http://portfolio.wonpaper.net 2021. 3. 28. 03:33

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
from tkinter import *
from tkinter import messagebox
 
def keyEvent(event):
    messagebox.showinfo("키보드 이벤트","눌린키 : " + chr(event.keycode))
 
window = Tk()
window.bind("<Key>",keyEvent)   #<Key> 모든키에 해당하는 이벤트코드
# <Return> : enter키 이벤트코드
# <less> : < 키 이벤트코드
# <space> : 스페이스바 이벤트코드
 
window.mainloop()
cs

 

Comments