123

실습과제 모음 2012. 11. 3. 17:16 Posted by TanSanC
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

import javax.swing.ImageIcon;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JPanel;


class MyFrame extends JFrame {

JButton bu;

ImageIcon icon1;

ImageIcon icon2;

ImageIcon icon3;


MyFrame() throws InterruptedException {

bu = new JButton();

icon1 = new ImageIcon("1.png");

icon2 = new ImageIcon("2.png");

icon3 = new ImageIcon("3.png");

setSize(600, 400);

setVisible(true);

JPanel panel = new JPanel();

panel.add(bu);

add(panel);

showImage();

}

public void showImage() throws InterruptedException {

bu.setIcon(icon1);

Thread.sleep(1000);

bu.setIcon(icon3);

}

}


public class CircleTest extends JFrame {

public static void main(String[] args) throws InterruptedException {

MyFrame ct = new MyFrame();

}

}


'실습과제 모음' 카테고리의 다른 글

C 언어 실습문제 모음  (0) 2013.01.09
CPP 실습과제 1208  (0) 2012.12.08
[JAVA1] 2012-10-14 실습 #2  (0) 2012.10.14
[JAVA1] 2012-10-14 실습 #1  (0) 2012.10.14
CPP 실습  (0) 2012.09.22