[Java/Swing] KeyListener - 이미지 움직이기
·
Java/Swing (GUI)
- 키보드 방향키로 움직이되, 이미지가 창 밖으로 나가지 않도록 함 코드// 인터페이스 파일 //public interface Moveable { void left(); void right(); void up(); void down();}------------------------------------// 클래스 파일 //public class MoveLabelFrame3 extends JFrame implements Moveable { private JLabel label; private int labelX; private int labelY; private final int SIZE_X = 800; private final int SIZE_Y = 800..