자바 Swing(스윙) - (4)
======== JAVA0427 → Ex.java import javax.swing.JFrame; public class Ex extends JFrame { public Ex() { showFrame(); } public void showFrame() { setBounds(600, 400, 300, 200); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); } public static void main(String[] args) { new Ex(); } } 기본 틀 만들기 Design 탭으로 가기 Center에 JPasswordField 붙이고 North 에 JLable Soute 에 JButton J..
2022.10.06