0
votes
How do I change JPanel inside a JFrame on the fly?
I suggest you to add both panel at frame creation, then change the visible panel by calling setVisible(true/false) on both.
When calling setVisible, the parent will be notified and asked to repaint …
