-
Notifications
You must be signed in to change notification settings - Fork 0
/
PCname.java
81 lines (69 loc) · 1.95 KB
/
PCname.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
79
80
81
package FDBS1;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.JLabel;
import javax.swing.SwingConstants;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class PCname {
static JFrame frame;
static JTextField name;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
PCname window = new PCname();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public PCname() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 398, 261);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
name = new JTextField();
name.setBounds(144, 78, 154, 33);
frame.getContentPane().add(name);
name.setColumns(10);
JLabel lblNewLabel = new JLabel("Enter Name:");
lblNewLabel.setHorizontalAlignment(SwingConstants.CENTER);
lblNewLabel.setBounds(10, 78, 122, 33);
frame.getContentPane().add(lblNewLabel);
JButton btnNewButton = new JButton("Next");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
PC1 window = new PC1();
window.frame.setVisible(true);
frame.dispose();
}
});
btnNewButton.setBounds(214, 150, 104, 33);
frame.getContentPane().add(btnNewButton);
JButton btnNewButton_1 = new JButton("Back");
btnNewButton_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
frame.dispose();
}
});
btnNewButton_1.setBounds(83, 150, 104, 33);
frame.getContentPane().add(btnNewButton_1);
}
}