) {
10. FrameWithPanel fr =
11. new FrameWithPanel ("Frame with Panel");
12. Panel pan = new Panel();
13.
14. fr.setSize(200,200);
15. fr.setBackground(Color.blue);
16. fr.setLayout(null); //override default layout mgr
17. pan.setSize (100,100);
18. pan.setBackground(Color.yellow);
19.
20. fr.add(pan);
21. fr.setVisible(true);
22. }
23. ....
24.
|