-
Notifications
You must be signed in to change notification settings - Fork 0
/
GridLayout.java
42 lines (30 loc) · 895 Bytes
/
GridLayout.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package gridlayoutdemo;
import java.awt.*;
class MyFrame extends Frame
{
Button b1,b2,b3,b4,b5,b6;
public MyFrame()
{
super("Grid Layout Demo");
setLayout(new GridLayout(3,2));
b1=new Button("one");
b2=new Button("two");
b3=new Button("three");
b4=new Button("four");
b5=new Button("five");
b6=new Button("six");
add(b1);
add(b2);
add(b3);
add(b4);
add(b5);
add(b6);
}
}
public class GridLayoutDemo {
public static void main(String[] args) {
MyFrame f=new MyFrame();
f.setSize(500,500);
f.setVisible(true);
}
}