수다닷컴

  • 해외여행
    • 괌
    • 태국
    • 유럽
    • 일본
    • 필리핀
    • 미국
    • 중국
    • 기타여행
    • 싱가폴
  • 건강
    • 다이어트
    • 당뇨
    • 헬스
    • 건강음식
    • 건강기타
  • 컴퓨터
    • 프로그램 개발일반
    • C언어
    • 비주얼베이직
  • 결혼생활
    • 출산/육아
    • 결혼준비
    • 엄마이야기방
  • 일상생활
    • 면접
    • 취업
    • 진로선택
  • 교육
    • 교육일반
    • 아이교육
    • 토익
    • 해외연수
    • 영어
  • 취미생활
    • 음악
    • 자전거
    • 수영
    • 바이크
    • 축구
  • 기타
    • 강아지
    • 제주도여행
    • 국내여행
    • 기타일상
    • 애플
    • 휴대폰관련
  • 프로그램 개발일반
  • C언어
  • 비주얼베이직

[java swing] 정말정말 궁금해요 !

나샘

2023.08.21

자바 스윙 공부를 하고 있습니다.

배경 이미지를 넣고 싶은데 안되네요 ㅠ

아직 왕초보라서요 ㅠ

주석부분을 풀면 이미지가 이상하게 되요 ㅠ

고수님들 알려주세요 ~ import java.awt.*;
import javax.swing.*;
import java.awt.event.*;

public class MemberFrame extends JFrame implements ActionListener {

//Image img;

//public void paint(Graphics g) {
// g.drawImage(img, 3, -130, this);
// }

public MemberFrame() {

//Image img = Toolkit.getDefaultToolkit().getImage(c:\\apple.gif);

Container cp = getContentPane();
cp.setLayout(new GridLayout(7, 1));

JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT));

JLabel label = new JLabel(ID:);
JTextField textfield = new JTextField();
textfield.setColumns(10);
JButton button = new JButton(ID 확인);
button.addActionListener(this);

panel.add(label);
panel.add(textfield);
panel.add(button);

cp.add(panel);

panel = new JPanel(new FlowLayout(FlowLayout.LEFT));

label = new JLabel(PASSWORD:);
JPasswordField passwordfield = new JPasswordField();
passwordfield.setColumns(10);

panel.add(label);
panel.add(passwordfield);

cp.add(panel);

panel = new JPanel(new FlowLayout(FlowLayout.LEFT));

label = new JLabel(PASSWORD 확인:);
passwordfield = new JPasswordField();
passwordfield.setColumns(10);

panel.add(label);
panel.add(passwordfield);

cp.add(panel);

panel = new JPanel(new FlowLayout(FlowLayout.LEFT));

label = new JLabel(별명:);
textfield = new JTextField();
textfield.setColumns(10);

panel.add(label);
panel.add(textfield);

cp.add(panel);

panel = new JPanel(new FlowLayout(FlowLayout.LEFT));

label = new JLabel(이메일:);
textfield = new JTextField();
textfield.setColumns(10);

panel.add(label);
panel.add(textfield);

cp.add(panel);

panel = new JPanel(new FlowLayout(FlowLayout.LEFT));

label = new JLabel(주소:);
textfield = new JTextField();
textfield.setColumns(20);

panel.add(label);
panel.add(textfield);

cp.add(panel);

panel = new JPanel(new FlowLayout(FlowLayout.LEFT));

label = new JLabel(전화번호:);
textfield = new JTextField();
textfield.setColumns(10);

panel.add(label);
panel.add(textfield);

panel = new JPanel(new FlowLayout(FlowLayout.CENTER));

button = new JButton(가입);
button.addActionListener(this);

panel.add(button);

cp.add(panel);
}

public void actionPerformed(ActionEvent e) {

String command = e.getActionCommand();

if (command.equals(ID 확인)) {

JOptionPane.showMessageDialog(null, 사용하지 않는 ID입니다.);

} else if (command.equals(가입)) {

int result = JOptionPane.showConfirmDialog(null, 가입하시겠습니까?, 가입 확인, JOptionPane.YES_NO_OPTION);
if (result == JOptionPane.YES_OPTION) {
JOptionPane.showMessageDialog(null, 회원 가입을 축하합니다.);
}
}
}

public static void main(String[] args) {

MemberFrame frame = new MemberFrame();
frnbsp; frame.setTitle(회원 가입);
frame.setSize(300, 300);
frame.show();
}
}

신청하기





COMMENT

댓글을 입력해주세요. 비속어와 욕설은 삼가해주세요.

번호 제 목 글쓴이 날짜
2694894 웹 프로그래밍 관련해서 질문합니다. 창의적 2025-05-15
2694868 컨택트 폼 7에서 textarea 높이 조정 영글 2025-05-15
2694818 line-height값이 적용이 안되는데 왜 그런 거예요?. letter-spacing,line-height의 기준?? (2) 풍란 2025-05-14
2694795 이것 어떻게 좀 해결좀;; (3) 개럭시 2025-05-14
2694724 코딩시 폰트 문제; ㅠ 후력 2025-05-13
2694696 텍스트박스 입력에 관한 문제입니다. 딥공감 2025-05-13
2694668 [질문] 페이퍼비전 PointLight 관련 질문 드려요.. 두바다찬솔 2025-05-13
2694611 Flash Lite 2.1에서 BitmapData와 Matrix 지원안하나요? (3) 이플 2025-05-12
2694582 IE & 파이어폭스 (2) 흙이랑 2025-05-12
2694553 무비클립안의 duplicate 발동이 안돼네요; 딥보라 2025-05-12
2694523 자바 애플릿 질문좀 ^^ (6) 동이 2025-05-12
2694494 [질문] JAVA 또는 C++ 로 프로그램 개발시.. 레지스터리 등록 관련 의문점? (3) 우람늘 2025-05-11
2694469 익스6에서 css버그 나오는것 해결방법좀요 !!!! (6) 원술 2025-05-11
2694442 로컬에선 잘 나오는데 운영에 반영하면 이상하게 나와요. (8) 목화 2025-05-11
2694412 [질문] 이미지 로딩후 사이즈 조절할때 (1) 아담 2025-05-11
2694391 설치형 블로그 쓰시는 분들 어떤거 쓰세요?? (7) AngelsTears 2025-05-10
2694362 Microsoft SQL Server에서 서버만드는법 어둠 2025-05-10
2694333 for문으로 돌린 이름의 제어 (4) 레이 2025-05-10
2694308 이미지 css 도와주세요 ㅠㅠ (2) 애기 2025-05-10
2694223 [급질문]스크롤스파이의 offset값 진나 2025-05-09
<<  이전  1 2 3 4 5 6 7 8 9 10  다음  >>

수다닷컴 | 여러분과 함께하는 수다토크 커뮤니티 수다닷컴에 오신것을 환영합니다.
사업자등록번호 : 117-07-92748 상호 : 진달래여행사 대표자 : 명현재 서울시 강서구 방화동 890번지 푸르지오 107동 306호
copyright 2011 게시글 삭제 및 기타 문의 : clairacademy@naver.com