我正在捕捉绑定键,到目前为止大多数字符工作正常,直到我到达方向键(向上向下)
我捕获其他密钥的代码是:
KeyStroke key_3 = KeyStroke.getKeyStroke("3");
如何捕捉方向键?
谢谢!
答案 0 :(得分:0)
KeyStroke.getKeyStroke("UP")
您可以使用
指定ctrl和shift版本KeyStroke.getKeyStroke("control UP")
KeyStroke.getKeyStroke("shift UP"