-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.java
More file actions
78 lines (66 loc) · 1.85 KB
/
main.java
File metadata and controls
78 lines (66 loc) · 1.85 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
package SLibrary;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JLabel;
import java.awt.Font;
import java.awt.Color;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class main {
JFrame mainn;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
main window = new main();
window.mainn.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public main() {
initialize();
}
//static boolean isVisible = true;
/**
* Initialize the contents of the frame.
*/
private void initialize() {
mainn = new JFrame();
mainn.setBounds(100, 100, 718, 548);
mainn.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
mainn.getContentPane().setLayout(null);
JPanel panel = new JPanel();
panel.setBounds(65, 44, 576, 429);
mainn.getContentPane().add(panel);
panel.setLayout(null);
JButton btnNewButton = new JButton("Category");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Category c=new Category();
c.Categoryy.setVisible(true);
}
});
btnNewButton.setFont(new Font("Tahoma", Font.BOLD, 15));
btnNewButton.setBounds(200, 29, 135, 21);
panel.add(btnNewButton);
JButton btnAuthor = new JButton("Author");
btnAuthor.setFont(new Font("Tahoma", Font.BOLD, 15));
btnAuthor.setBounds(200, 93, 135, 21);
panel.add(btnAuthor);
JButton btnPublisher = new JButton("Publisher");
btnPublisher.setFont(new Font("Tahoma", Font.BOLD, 15));
btnPublisher.setBounds(200, 170, 135, 21);
panel.add(btnPublisher);
}
}