Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove all components from a JFrame in Java?

I'm writing a program where I have a JFrame and I want to remove all components from it, then add just one component to it and repaint the frame. What I have so far is something like the code below (called in an object that implements JFrame, where StartPanel implements JPanel):

removeAll();     startPanel = new StartPanel(); startPanel.setVisible(true); add(startPanel); revalidate(); repaint(); 

However, when I run the code it shows an empty window (not the startPanel) and when I minimize/resize the window, the window turns black. If I leave out the removeAll() and there are not elements already on the JFrame it displays the startPanel just fine. Any ideas on how to actually remove everything, and then get the new panel to still show up?

like image 486
scaevity Avatar asked Feb 19 '12 05:02

scaevity


People also ask

How do I remove all elements from a JPanel?

With removeAll() you can remove all components from a Container . Show activity on this post. NOTE: if you do not want to delete all components, just insert a condition before remove checking if component is candidate to die.

How do you delete a panel in Java?

SwingUtilities. invokeLater(new Runnable() { public void run() { frame. getContentPane(). remove(panel1); frame.

How do you remove labels in Java?

add(label); final JButton remove = new JButton("Remove label"); leftPanel. add(remove); add. addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { rightPanel. remove(label); } });


2 Answers

You must call

 private JFrame frame = new JFrame();  ...  ...  frame.getContentPane().removeAll();  frame.repaint(); 

removeAll() has not been overridden as add() or remove() to forward to the contentPane as necessary.

like image 146
Kavka Avatar answered Sep 28 '22 10:09

Kavka


assuming your goal is to add something else after you clear the frame you should call validate after adding thoes components to update it

getContentPane().removeAll(); add(new component); validate(); 
like image 34
joe pelletier Avatar answered Sep 28 '22 08:09

joe pelletier