java:remove(component);不会立即删除按钮

时间:2015-03-11 08:54:16

标签: java eclipse jbutton

所以我使用它从JPanel中删除按钮。但是,按钮不会立即删除,但只有在我最小化窗口后才会消失。有什么建议吗?

   jBOption2.addActionListener(new ActionListener(){
            public void actionPerformed(ActionEvent e){

                    jPanel.remove(jButton2);

1 个答案:

答案 0 :(得分:1)

如果我错了,请纠正我,但我认为它应该与本文中提到的相同: https://stackoverflow.com/questions/11438512/...

jPanel.remove(jButton2);
jPanel.revalidate();
jPanel.repaint();

我希望它适合你的问题;)