-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyGridLayout.java
38 lines (34 loc) · 936 Bytes
/
MyGridLayout.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
import java.awt.*;
import javax.swing.*;
public class MyGridLayout {
JFrame f;
MyGridLayout() {
f = new JFrame();
JButton b1 = new JButton("1");
JButton b2 = new JButton("2");
JButton b3 = new JButton("3");
JButton b4 = new JButton("4");
JButton b5 = new JButton("5");
JButton b6 = new JButton("6");
JButton b7 = new JButton("7");
JButton b8 = new JButton("8");
JButton b9 = new JButton("9");
// adding buttons to the frame
f.add(b1);
f.add(b2);
f.add(b3);
f.add(b4);
f.add(b5);
f.add(b6);
f.add(b7);
f.add(b8);
f.add(b9);
// setting grid layout of 3 rows and 3 columns
f.setLayout(new GridLayout(3, 3));
f.setSize(300, 300);
f.setVisible(true);
}
public static void main(String[] args) {
new MyGridLayout();
}
}