如何将+和-键绑定到Tcl/Tk中的命令?
对于这个特殊的问题:
set foo "t:"
pack [label .l -textvar foo]
bind . <Key-plus> {append foo "+"}
bind . <Key-KP_Add> {append foo "(+)"}
bind . <Key-minus> {append foo "-"}
bind . <Key-KP_Subtract> {append foo "(-)"}
但通常你可以通过运行"xev"并按下该键来找到键名