-
Notifications
You must be signed in to change notification settings - Fork 3
/
interfacedes1.java
55 lines (49 loc) · 1.43 KB
/
interfacedes1.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
package bus_booking;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class interfacedes1 extends JFrame implements ActionListener{
JButton adminBtn,userBtn,exitBtn;
interfacedes1(){
setTitle("Admin or User");
getContentPane().setBackground(Color.ORANGE);
setBackground(Color.CYAN);
getContentPane().setForeground(Color.WHITE);
getContentPane().setLayout(new FlowLayout());
JLabel label = new JLabel("Bus Booking System");
label.setFont(new Font("Times New Roman", Font.BOLD, 20));
label.setForeground(Color.BLUE);
getContentPane().add(label);
setBounds(600, 200, 600, 600);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
adminBtn = new JButton("ADMIN");
userBtn = new JButton("USER");
exitBtn = new JButton("EXIT");
adminBtn.addActionListener(this);
userBtn.addActionListener(this);
exitBtn.addActionListener(this);
add(adminBtn);
add(userBtn);
add(exitBtn);
setVisible(true);
}
public void actionPerformed(ActionEvent ae) {
if (ae.getSource() == adminBtn) {
new interface_admin();
repaint();
}
else if (ae.getSource() == userBtn) {
new interface_user();
repaint();
}
else if (ae.getSource() == exitBtn) {
Runtime.getRuntime().exit(1);
repaint();
}
}
}