-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHomepage.java
More file actions
86 lines (73 loc) · 2.16 KB
/
Homepage.java
File metadata and controls
86 lines (73 loc) · 2.16 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
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
82
83
84
85
86
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.BorderLayout;
import java.awt.GridBagLayout;
import java.awt.GridBagConstraints;
import javax.swing.JDesktopPane;
import javax.swing.JFileChooser;
import javax.swing.JTextField;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.awt.Font;
public class Homepage {
private JFrame frame;
private JTextField textField;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Homepage window = new Homepage();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public Homepage() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
//rename
JLabel lblNewLabel = new JLabel("Project 5");
lblNewLabel.setFont(new Font("Lucida Grande", Font.PLAIN, 25));
lblNewLabel.setBounds(167, 19, 117, 41);
frame.getContentPane().add(lblNewLabel);
JLabel lblNewLabel_1 = new JLabel("File: ");
lblNewLabel_1.setBounds(33, 133, 61, 16);
frame.getContentPane().add(lblNewLabel_1);
JButton fileButton = new JButton("Select File");
fileButton.setBounds(167, 208, 117, 41);
fileButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JFileChooser chooser = new JFileChooser();//"Open");
chooser.showOpenDialog(null);
chooser.setBounds(119, 119, 202, 41);
frame.getContentPane().add(chooser);
}
});
frame.getContentPane().add(fileButton);
/*JButton btnNewButton = new JButton("Open");
//btnNewButton.addActionListener(new ActionListener() {
//public void actionPerformed(ActionEvent e) {
//}
//});
//btnNewButton.setBounds(167, 208, 117, 41);
//frame.getContentPane().add(btnNewButton);*/
}
}