/*
* file : WBFrame.java
*/
jaimport java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JLabel;
import java.awt.Font;
import javax.swing.JTextField;
import javax.swing.JButton;
import javax.swing.ImageIcon;
import java.awt.Color;
import javax.swing.JProgressBar;
public class WBFrame extends JFrame {
private JPanel contentPane;
private JTextField textField;
private JTextField textField_1;
/**
* Launch the application.
*/
/**
* Create the frame.
*/
public WBFrame() {
setTitle("\uB85C\uADF8\uC778");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 712, 494);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
JPanel panel = new JPanel();
contentPane.add(panel, BorderLayout.CENTER);
panel.setLayout(null);
JLabel lblNewLabel = new JLabel("\uC544\uC774\uB514");
lblNewLabel.setFont(new Font("나눔고딕", Font.PLAIN, 18));
lblNewLabel.setBounds(175, 197, 60, 32);
panel.add(lblNewLabel);
JLabel label = new JLabel("\uBE44\uBC00\uBC88\uD638");
label.setFont(new Font("나눔고딕", Font.PLAIN, 18));
label.setBounds(173, 265, 75, 32);
panel.add(label);
textField = new JTextField();
textField.setBounds(255, 205, 139, 21);
panel.add(textField);
textField.setColumns(20);
textField_1 = new JTextField();
textField_1.setColumns(20);
textField_1.setBounds(255, 273, 139, 21);
panel.add(textField_1);
JButton btnNewButton = new JButton("\uB85C\uADF8\uC778");
btnNewButton.setFont(new Font("문체부 궁체 정자체", Font.PLAIN, 15));
btnNewButton.setBounds(427, 204, 91, 23);
panel.add(btnNewButton);
JButton button = new JButton("\uD68C\uC6D0\uAC00\uC785");
button.setFont(new Font("문체부 궁체 정자체", Font.PLAIN, 15));
button.setBounds(418, 270, 112, 23);
panel.add(button);
JLabel lblNewLabel_1 = new JLabel("New label");
lblNewLabel_1.setIcon(new ImageIcon("C:\\DEV\\Java\\WBSource\\youLogo.png"));
lblNewLabel_1.setBounds(0, 10, 688, 157);
panel.add(lblNewLabel_1);
JLabel lblNewLabel_2 = new JLabel("\uC544\uC774\uB514/\uBE44\uBC00\uBC88\uD638 \uC785\uB825 \uD6C4 \uB85C\uADF8\uC778\uBC84\uD2BC\uC744 \uB20C\uB7EC\uC8FC\uC138\uC694");
lblNewLabel_2.setFont(new Font("휴먼엑스포", Font.PLAIN, 12));
lblNewLabel_2.setForeground(Color.BLACK);
lblNewLabel_2.setBackground(Color.BLACK);
lblNewLabel_2.setBounds(212, 342, 287, 55);
panel.add(lblNewLabel_2);
JProgressBar progressBar = new JProgressBar();
progressBar.setBounds(280, 407, 146, 11);
panel.add(progressBar);
}
}