-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistBoxAndChoice.java
78 lines (58 loc) · 1.53 KB
/
listBoxAndChoice.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
69
70
71
72
73
74
75
76
77
78
import java.awt.*;
import java.awt.event.*;
class myframe extends Frame implements ItemListener,ActionListener
{
List l;
Choice ch;
TextArea ta;
public myframe()
{
super("listbox and choice");
l=new List(4,true);
ch=new Choice();
ta=new TextArea(20,30);
l.add("Monday");
l.add("tuesday");
l.add("wednesday");
l.add("thursday");
l.add("friday");
l.add("saturday");
l.add("sunday");
ch.add("january");
ch.add("february");
ch.add("March");
ch.add("April");
setLayout(new FlowLayout());
add(l);
add(ch);
add(ta);
l.addItemListener(this);
ch.addItemListener(this);
l.addActionListener(this);
}
public void itemStateChanged(ItemEvent e)
{
if(e.getSource()==l)//hamne click listbox me kiya hai ya ni?...ye ye pata lagaega
ta.setText(l.getSelectedItem());
else
ta.setText(ch.getSelectedItem());
}
public void actionPerformed(ActionEvent e) {
String list[] = l.getSelectedItems();
String txt="";
for(String x:list)
{
txt = txt + x + "\n";
ta.setText(txt);
}
}
public class listBoxAndChoice
{
public static void main(String arg[])
{
myframe f=new myframe();
f.setSize(400,400);
f.setVisible(true);
}
}
}