最佳答案
In Python tkinter
module, <Button-1>
, <Button-2>
and <Button-3>
are used to identify mouse button clicks for left, middle and right buttons respectively.
Likewise, <KeyPress-Return>
is used for the return key press.
Where can I find a list of all such events, including the names for the various keyboard keys?
Tcl bind manual does not have those.