Windows以外の他のPLAFで機能するため、これは奇妙なものです。
まず、PLAF を次のように設定しています。
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
次に、ENTER を次のように FORWARD トラバーサル キーに追加します。
Set<AWTKeyStroke> forSet = new HashSet<AWTKeyStroke>();
forSet.add(AWTKeyStroke.getAWTKeyStroke(KeyEvent.VK_ENTER, 0));
KeyboardFocusManager.getCurrentKeyboardFocusManager().setDefaultFocusTraversalKeys(
KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, forSet);
私はそれらを逆に試しましたが、うまくいきませんでした。
手がかりはありますか?