How to set more panels in Java
- by baklap
I need to get two JPanels into one JApplet.
paneel = new RekenmachinePaneel();
nummer = new NummerPaneel();
setContentPane(paneel);
Now I need to get the nummer panel to show up beneath the paneel. How should I do that?