JButtons考虑按空格键与点击JButton相同(假设JButton具有焦点,我在这里假设).有没有办法关闭这种行为,所以他们忽略按空格键?
另外,更一般地说,是否有使用AbstractButtons执行此操作的技术?
解决方法
你可以通过这样做来禁用它
jbutton.getInputMap().put(KeyStroke.getKeyStroke("SPACE"),"none");
这似乎也适用于其他AbstractButtons,例如JRadioButtons.
正如@camickr指出below你可以一次解决所有JButton,如下所示:
InputMap im = (InputMap)UIManager.get("Button.focusInputMap"); im.put(KeyStroke.getKeyStroke("pressed SPACE"),"none"); im.put(KeyStroke.getKeyStroke("released SPACE"),"none");