requestFocusInaWindow() 不工作 - 我做错了什么?



我看到了一些关于Java中Focus的文档,但我不明白它是如何工作的。

我试图在这个简短的代码中重现我的疑问,我试图在 textfield2 组件中设置焦点。我想我已经尊重了文档的要求 - 即组件需要可显示、可见和可聚焦 (https://docs.oracle.com/javase/tutorial/uiswing/misc/focus.html(。那么,我做错了什么?

***
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class WindowForm {
private JFrame frame;
private JTextField textField1;
private JTextField textField2;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
WindowForm window = new WindowForm();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public WindowForm() {
initialize();
}
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
myPanel panel = new myPanel();
panel.setBounds(10, 11, 414, 239);
frame.getContentPane().add(panel);
panel.setLayout(null);
textField1 = new JTextField("textfield1");
textField1.setBounds(137, 93, 152, 20);
panel.add(textField1);
textField1.setColumns(10);
textField2 = new JTextField("textfield2");
textField2.setColumns(10);
textField2.setBounds(137, 124, 152, 20);
panel.add(textField2);
panel.changeFocus();
}
public class myPanel extends JPanel{
public void changeFocus() {
textField2.setVisible(true);
textField2.setFocusable(true);
textField2.requestFocusInWindow();
}
}
}

我看到一些需要在jframe中实现addWindowFocusListener的示例 - 但我需要将此解决方案应用于CardLayout JPanel - 所以,我认为这行不通。

提前谢谢你。

我在actionPerformed块中使用requestFocusInWindow解决了这个问题。

喜欢这个:


public void actionPerformed(ActionEvent e( { 字符串命令 = e.getActionCommand((;

if(command.equals("btnNext")) {
cardLayout.show(nextJPanel, "Panel2");
textField2.requestFocusInWindow();
}           

}


还有其他解决方案吗?

相关内容

  • 没有找到相关文章

最新更新