gpt4 book ai didi

Java 按钮未出现在 JPanel 中

转载 作者:行者123 更新时间:2023-12-01 14:06:48 26 4
gpt4 key购买 nike

只有当我将鼠标移到“不可见按钮”上时,这些按钮才不会出现在我的 JPanel 中...

那不是我的代码。所以,我的代码看起来没问题,但没有出现在我的 JPanel 中...我只是尝试重新验证并重新绘制 JPanel,但什么也没发生...

for (int i; i < 5; i++) {
JButton button = new JButton();
button.setText("" + i);
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {

System.out.print("\n Test: " + ae.getActionCommand());

}
});
button.setSize(60,20);
button.setLocation(100, 140);
button.setVisible(true);
this.add(button);
this.revalidate();
this.repaint();
}

最佳答案

如果有人遇到这个问题...

只需输入:按钮.requestFocusInWindow();//在方法的最后一行...

像这样:

for (int i; i < 5; i++) {
JButton button = new JButton();
button.setText("" + i);
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {

System.out.print("\n Test: " + ae.getActionCommand());

}
});
button.setSize(60,20);
button.setLocation(100, 140);
button.setVisible(true);
this.add(button);
this.revalidate();
this.repaint();
button.requestFocusInWindow();

}

关于Java 按钮未出现在 JPanel 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18838621/

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