-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreditsWindow.java
More file actions
26 lines (20 loc) · 979 Bytes
/
Copy pathCreditsWindow.java
File metadata and controls
26 lines (20 loc) · 979 Bytes
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
import javax.swing.*;
import java.awt.*;
public class CreditsWindow{
JFrame frame = new JFrame();
JTextArea area =
new JTextArea
("Leader:\nGo,Mark Andrei C.\n\nEncoder:\nCervantes,Elijah Gabe C.\n\nDesigner:\nPineda,Rosemarie G.\n\nDocumentation:" +
"\nLagman,Ian Carlo M." + "\n\n\nReference:\nhttps://www.youtube.com/playlist?list=PLVebSvXY44hFyJMAXmpzp9sTyupgCUaAn\n"
+ "https://www.youtube.com/watch?v=HgkBvwgciB4&t=58s&ab_channel=BroCode\n" +
"https://www.youtube.com/watch?v=dfhmTyRTCSQ&t=12s&ab_channel=BroCode");
CreditsWindow(){
area.setBounds(0,0,1000,500);
area.setFont(new Font(null,Font.PLAIN,18));
frame.add(area);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(430,430);
frame.setLayout(null);
frame.setVisible(true);
}
}