Gridlayout merupakan salah satu layout yang digunakanuntuk mengatur tata
letak pada panel. Gridlayout merupakan bagian dari library AWT. Grid
layout menempatkan komponen dalam bentuk “rectangular grid”.
berikut contoh sintaknya :
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Grid extends JFrame {
public Grid( ) {
createUserInterface();
}
private void createUserInterface(){
JPanel panel1 = new JPanel();
panel1.setLayout(new GridLayout(3, 2));
panel1.add(new JButton("One"));
panel1.add(new JButton("Two"));
panel1.add(new JButton("Three"));
panel1.add(new JButton("Four"));
panel1.add(new JButton("Five"));
this.add(panel1);
this.setTitle("Grid");
this.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
this.setSize(200, 200);
this.setLocation(200, 200);
this.setVisible(true);
}
public static void main(String[] args) {
Grid app = new Grid();
}
}
Minggu, 04 Desember 2011
Langganan:
Posting Komentar (Atom)
0 komentar:
Posting Komentar