Swing 7

210824_Swing+Label+Button+Arrays+Random

public class SwingLabelGridEx05 extends JFrame { Container cp; JLabel[] lbl=new JLabel[9]; //공간만 할당받고 초기값 받은 거 아님 String []str={"한국","영국","프랑스","오스트리아","체코","헝가리","홍콩","미국","태국"}; JButton btn; public SwingLabelGridEx05(String title) { super(title); cp=this.getContentPane(); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setBounds(700,100,600,600); cp.setBackground(new Color(151,190,20..

Swing 2021.08.24