import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
class MyAction implements ActionListener{
public void actionPerformed(ActionEvent e){
JButton btn = (JButton) e.getSource();
if(btn.getText().equals("삽입")){
btn.setText("수정");
ImageIcon img1 = new ImageIcon("thm.jpg");
JButton b52 = new JButton(img1);
btn.add(b52,BorderLayout.CENTER);
}
else{
btn.setText("삽입");
ImageIcon img = new ImageIcon("thm1.jpg");
JButton b51 = new JButton(img);
btn.add(b51,BorderLayout.CENTER);
}
}
}
public class Action1 extends JFrame {
Action1() {
this.setTitle("토글 키 예제");
this.setSize(300, 300);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//this.setLayout(new FlowLayout()); // 프레임에 대한 배치관리자 설정
JPanel btn = new JPanel();
btn.setLayout(new BorderLayout());
JButton btn1 = new JButton("삽입");
btn.add(btn1,BorderLayout.NORTH);
ImageIcon img1 = new ImageIcon("thm.jpg"); // 이미지 파일 이름
JButton b52 = new JButton(img1);
btn.add(b52,BorderLayout.CENTER);
ImageIcon img = new ImageIcon("thm1.jpg"); // 이미지 파일 이름
JButton b51 = new JButton(img);
btn.add(b51,BorderLayout.CENTER);
btn1.addActionListener(new MyAction());
this.add(btn);
this.setVisible(true);
}
public static void main (String[] args) {
new Action1();
}
}
'IT > JAVA' 카테고리의 다른 글
[JAVA/자바] 년(연)도를 입력 받아 윤년 혹은 평년 구하기 / 입력 받은 년(연)도의 윤년 발생 횟수 구하기(BufferedReader & IF) (0) | 2018.08.05 |
---|---|
[JAVA/자바] 마우스 이벤트(MouseListener)와 키 리스너(KeyListener), 키 이벤트(KeyEvent) 예제 (0) | 2017.06.15 |
[JAVA/자바] 방향키를 누를때마다 이미지가 10픽셀씩 이동되게 하는 프로그램 예제(KeyEvent/keyPressed) (0) | 2017.06.05 |
[JAVA/자바] 오목(Omok) 게임 예제 - 컴퓨터(Computer) Ai 판단 (0) | 2017.05.30 |
[JAVA/자바] 버블정렬 알고리즘을 이용한 로또 게임(Lotto Game) 예제 (0) | 2017.05.30 |