java – 禁用空格键触发单击JButton

前端之家收集整理的这篇文章主要介绍了java – 禁用空格键触发单击JButton前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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");
原文链接:https://www.f2er.com/java/128894.html

猜你在找的Java相关文章