所以我使用它从JPanel中删除按钮。但是,按钮不会立即删除,但只有在我最小化窗口后才会消失。有什么建议吗?
jBOption2.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
jPanel.remove(jButton2);
答案 0 :(得分:1)
如果我错了,请纠正我,但我认为它应该与本文中提到的相同: https://stackoverflow.com/questions/11438512/...
jPanel.remove(jButton2);
jPanel.revalidate();
jPanel.repaint();
我希望它适合你的问题;)