-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathButtonDemo.java
More file actions
48 lines (31 loc) · 1.14 KB
/
ButtonDemo.java
File metadata and controls
48 lines (31 loc) · 1.14 KB
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
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class ButtonDemo {
JLabel jlab;
ButtonDemo() {
JFrame jfrm = new JFrame("A Button Example");
jfrm.setLayout(new FlowLayout());
jfrm.setSize(220, 90);
jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton jbtnUp = new JButton("Up");
JButton jbtnDown = new JButton("Down");
jbtnUp.addActionListener((ae) -> jlab.setText("You pressed Up."));
jbtnDown.addActionListener((ae) -> jlab.setText("You pressed Down."));
jfrm.add(jbtnUp);
jfrm.add(jbtnDown);
jlab = new JLabel("Press a button");
jfrm.add(jlab);
jfrm.setVisible(true);
}
public static void main(String args[]) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch(Exception e) {};
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new ButtonDemo();
}
});
}
}