在Python Tkinter中绑定Ctrl(-)


问题内容

我有一个带有文本小部件的应用程序,我希望当用户按下Control键和减号(-)时字体变小。

编码

self.bind_all("<Control-=>", self.increaseFont)

当用户按下控制键和等号键时,使字体增加似乎效果很好,但是该行

self.bind_all("<Control-->", self.decreaseFont)

似乎不起作用。

当我尝试运行它时,它给了我运行时错误:

Traceback (most recent call last):
  File "./mathEditor.py", line 122, in <module>
    app = MathEditor(fileName = sys.argv[1])
  File "./mathEditor.py", line 40, in __init__
    self.bind_all("<Control-->", self.decreaseFont)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkinter.py", line 997, in bind_all
    return self._bind(('bind', 'all'), sequence, func, add, 0)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkinter.py", line 940, in _bind
    self.tk.call(what + (sequence, cmd))
_tkinter.TclError: no event type or button # or keysym

问题答案:

尝试self.bind_all("<Control-minus>", self.decreaseFont)