How to set more panels in Java
Posted
by baklap
on Stack Overflow
See other posts from Stack Overflow
or by baklap
Published on 2010-03-22T19:38:43Z
Indexed on
2010/03/22
19:41 UTC
Read the original article
Hit count: 309
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?
© Stack Overflow or respective owner