|
The GridLayout class is a layout manager that lays out a container's components in a rectangular grid. The container is divided into equal-sized rectangles, and one component is placed in each rectangle. GridLayout has the following constructors:
GridLayout(int rows, int cols)
GridLayout(int rows, int cols, int hgap, int vgap)
Here:
hgap=horizontal gap between components
vgap=vertical gap between components
rows=number of rows in the grid
cols=number of column in the grid
import java.awt.*;
import java.applet.Applet;
public class Grid extends Applet{
// Adding Labels
Label one = new Label("Rohit");
Label two = new Label("Mohit");
Label three = new Label("Ashish");
Label four = new Label("Dinesh");
Label five = new Label("Kshitij");
Label six = new Label("Anand");
Label seven = new Label("Pradeep");
Label eight = new Label("Vikas");
Label nine = new Label("Sandeep");
Label ten = new Label("Pankaj");
Label eleven= new Label("Narang");
Label twelve= new Label("Khariwal");
public void init(){
setLayout(new GridLayout(4,3));
add(one); one.setBackground(Color.red);
add(two); two.setBackground(Color.orange);
add(three); three.setBackground(Color.red);
add(four); four.setBackground(Color.green);
add(five); five.setBackground(Color.pink);
add(six); six.setBackground(Color.green);
add(seven); seven.setBackground(Color.blue);
add(eight); eight.setBackground(Color.yellow);
add(nine); nine.setBackground(Color.blue);
add(ten); ten.setBackground(Color.orange);
add(eleven); eleven.setBackground(Color.white);
add(twelve); twelve.setBackground(Color.orange);
}
}
|
Related Tips
|
Page 1 of 0 ( 0 comments )
You can share your information about this topic using the form below!
Please do not post your questions with this form! Thanks.