View Single Post
  #2 (permalink)  
Old 01-31-2008, 06:02 AM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,266
hardwired is on a distinguished road
Code:
JPanel gridPanel = new JPanel(); // configure gridPanel... JLabel statusLabel = new JLabel(); // configure statusLabel... JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Container cp = f.getContentPane(); // Default layout of contentPane is BorderLayout // Add gridPanel to center of BorderLayout cp.add(gridPanel); // Add statusLabel to south section of BorderLayout cp.add(statusLabel, BorderLayout.SOUTH);
Reply With Quote