View Single Post
  #5 (permalink)  
Old 01-10-2008, 01:51 AM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,189
hardwired is on a distinguished road
textField and Button cover all the window
Add each one to a panel - the panel will show the component at its preferredSize and will itself expand to fill the grid cell. This was done in the getGridTab method of SomeLayouts:
Code:
JPanel p = new JPanel(); p.add(getTextField()); panel.add(p); p = new JPanel(); p.add(getButton()); panel.add(p);
Reply With Quote