JAVA button的焦点问题

2024-12-21 20:54:34
推荐回答(1个)
回答1:

JComponent有一个方法getRootPane(),返回JRootPane
JRootPane有一个方法setDefaultButton(JButton),用来设置默认的按钮,回车后直接触发
.getRootPane().setDefaultButton(JButton)
这样就行了

凡是JComponent的子类都可以用,像JPanel什么的