-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJMenuTest.java
68 lines (59 loc) · 1.57 KB
/
JMenuTest.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package java_GUI;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
public class JMenuTest {
public static void main(String[] args) {
JFrame f = new JFrame("꽉데");
f.setSize(400, 300);
f.setLocation(200, 200);
// 꽉데으
JMenuBar mb = new JMenuBar();
// 꽉데
JMenu jm1 = new JMenu("彊벎");
//꽉데淃
jm1.add(new JMenuItem("틥벎"));
jm1.add(new JMenuItem("窮슐"));
jm1.add(new JMenuItem("깽쬡"));
jm1.add(new JMenuItem("鮫믿"));
// 꽉데
JMenu jm2 = new JMenu("諫꽉");
//꽉데淃
jm2.add(new JMenuItem("랸한"));
jm2.add(new JMenuItem("한綾"));
jm2.add(new JMenuItem(""));
jm2.add(new JMenuItem(""));
jm2.add(new JMenuItem("뼝믿"));
jm2.add(new JMenuItem("떴실"));
// 꽉데
JMenu jm3 = new JMenu("충稼");
//꽉데淃
jm3.add(new JMenuItem("충係"));
jm3.add(new JMenuItem("착庫"));
jm3.add(new JMenuItem("관綾"));
jm3.add(new JMenuItem("答係"));
jm3.add(new JMenuItem("충관"));
jm3.add(new JMenuItem("싫綾"));
// 꽉데
JMenu jm4 = new JMenu("");
//꽉데淃
jm4.add(new JMenuItem("윤슘"));
jm4.add(new JMenuItem("닝"));
jm4.add(new JMenuItem("슈答"));
jm4.add(new JMenuItem("떴剿"));
jm4.add(new JMenuItem("닉쉠渠"));
// 꽉데
JMenu jm5 = new JMenu("흄잚");
// 겉꽉데속흙돕꽉데으
mb.add(jm1);
mb.add(jm2);
mb.add(jm3);
mb.add(jm4);
mb.add(jm5);
// 겉꽉데으속흙돕frame,侶쟁痰돨角set랍렷add
f.setJMenuBar(mb);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setVisible(true);
}
}