Java application 관련 정렬문제와 마우스클릭이벤트 질문있습니다.
두빛나래
설계도를 만들고 자바 어플리케이션을 작업중이 였으나 모든 에러 실패로 현재 버튼을 클릭시 택스트로만 나오게
만들어놨습니다.
borderlayout를 사용하여 위치들을 정렬 시키고 싶으나 생각외로 잘 안되어 flowlayout 방식으로 그나마 정렬을 시켜논
상태입니다. 이 이상은 더 공부를 해서 문제를해쳐나가야하나 시험기간과 프로젝트의 연일 겹칩때문에 이렇게 자바
고수님들의 도움을 요청하게 되었습니다.
오류사항은 없습니다.
첫번째 사진은 제가 현재까지 진행하여 만든 프로그램이며 보더레이아웃의 빈번한 실패로
플로우레이아웃으로 만들어논상태입니다.
아래의 설계도 처럼 택스트와 ok버튼을 아래로 정렬하고 싶은데 방법이 궁금하며 버튼을 눌렀을시
아무이미지나 경로를 설정하여 가운데 페이지에
나오는것을 하고 싶은게 그게 매우 어렵습니다. 현재 마우스클릭시 택스트만 나오게 해논 상태이며
이에 조언을 구합니다.
아직 배운지 얼마되지않아서 10시간 동안 작업을 하다 정말 힘들어서 이렇게 글을 남깁니다. 도와주신다면
나중에 훌륭한 프로그래머가 되어이은혜 잊지 않겠습니다.
import java.awt.*;
import java.awt.event.*;public class jv_7_b1 extends frame implements actionlistener {
label lb0, lb1, lb2, lb3, lb4, lb5, lb6, lb7 ;
button b0, b1, b2, b3, b4, b5;
public jv_7_b1() {
super(bj gui application);
setlayout(new flowlayout());
lb0 = new label(안녕하세요. java application 입니다. 이렇게 저의 어플리케이션에 방문해주셔서 감사합니다);
lb1 = new label(image button 1:);
lb2 = new label(image button 2:);
lb3 = new label(image button 3:);
lb4 = new label(image button 4:);
lb5 = new label(image button 5:);
b1 = new button(ok);
b2 = new button(ok);
b3 = new button(ok);
b4 = new button(ok);
b5 = new button(ok);
add(lb0);
add(lb1); add(b1);
add(lb2); add(b2);
add(lb3); add(b3);
add(lb4); add(b4);
add(lb5); add(b5);
lb6 = new label(button을 클릭시 image가 표시됩니다);
lb6.setbackground(color.red);
lb7 = new label ( );
lb6.setbackground(color.red);
add(lb6); add(lb7);
b0 = new button(종료);
add(b0);
setsize(600, 400);
setvisible(true);
b1.addactionlistener(this);
b2.addactionlistener(this);
b3.addactionlistener(this);
b4.addactionlistener(this);
b5.addactionlistener(this);
b0.addactionlistener(this);
}
public void actionperformed(actionevent e) {
if (e.getsource() == b1) {
lb7.settext(image button 1);
lb7.setbackground(color.white);
} else if (e.getsource() == b2) {
p; lb7.settext(image button 2);
lb7.setbackground(color.white);
} else if (e.getsource() == b3) {
lb7.settext(image button 3);
lb7.setbackground(color.white);
} else if (e.getsource() == b4) {
lb7.settext(image button 4);
lb7.setbackground(color.white);
} else if (e.getsource() == b5) {
lb7.settext(image button 5);
lb7.setbackground(color.white);
} else if (e.getsource() == b0) {
lb7.settext(false);
dispose();
system.exit(0);
}
}
public static void main(string[] args) {
new jv_7_b1();
}
}