I have a JFrame and i have the set the layout to GroupLayout.
i am adding two Jpanel i.e workingPanel(red) , backgroundPanel(green) .
I want the green colored panel to be of less height say 50 or 60.i have set the size of backgroundPanel to 50 but on addding it to the Jframe the height of the backgroundPanel is same as workingPanel.
and the code is `import javax.swing.; import java.awt.;
public class Home extends JFrame{
JButton b1;
JPanel workingPanel,backgroundPanel;
public Home(){
new JFrame("Restaurant Billing");
b1=new JButton("Hello");
workingPanel=new JPanel();
backgroundPanel=new JPanel();
int maximumWidth=getContentPane().getWidth();
backgroundPanel.setSize(maximumWidth,60);
workingPanel.setBackground(Color.red); //workingpanel backgroundcolor is red
backgroundPanel.setBackground(Color.green);//backgroundPanle backcolor is green
//creating grouplayout and setting to mainframe
GroupLayout layout=new GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup()
.addComponent(backgroundPanel)
.addComponent(workingPanel)
);
layout.setVerticalGroup(
layout.createSequentialGroup()
.addComponent(backgroundPanel)
.addComponent(workingPanel)
);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void launchFrame(){
this.setVisible(true);
}
}
Plz help me.
Try to use the prefferedSize properties.