gpt4 book ai didi

java - 按键事件未被调用

转载 作者:行者123 更新时间:2023-12-01 04:17:35 25 4
gpt4 key购买 nike

public GuiC() {
getContentPane().addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent e) {
System.out.println("hi");

}
});
setBackground(Color.GREEN);
setTitle("Hi!");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 500, 500);
getContentPane().setLayout(null);

}

所以这是我的框架,我在这里做错了什么吗?因为当我按任意键时不会调用键事件,请帮忙:)

最佳答案

您可能需要请求焦点。

public GuiC() {
this.getContentPane().requestFocus(); //request focus here
this.getContentPane().addKeyListener(new KeyListener() {
@Override
public void keyPressed(KeyEvent e) {
System.out.println("hi: " + e.getKeyChar());

}
});
setBackground(Color.GREEN);
setTitle("Hi!");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 500, 500);
getContentPane().setLayout(null);

}

补充阅读:How to Write a Key Listener

关于java - 按键事件未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19277866/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com