Method Name | Description |
---|---|
showConfirmDialog | Asks a confirming question, like yes/no/cancel. |
showInputDialog | Prompt for some input. |
showMessageDialog | Tell the user about something that has happened. |
showOptionDialog | The Grand Unification of the above three. |
//메세지 다이얼로그
JOptionPane.showMessageDialog(parentComponent, message);
JOptionPane.showMessageDialog(parentComponent, message, title, messageType);
JOptionPane.showMessageDialog(parentComponent, message, title, messageType, icon);
JDialog를 이용해서 다이얼로그를 생성할 수 있지만
JOptionPane를 이용하면 제한적인 기능을 가진 다이얼로그를 간단하게 생성 할 수 있다.
JOptionPane.showMessageDialog(null, "ID,비밀번호를 모두 입력해주세요.");
http://docs.oracle.com/javase/6/docs/api/javax/swing/JOptionPane.html
'JAVA' 카테고리의 다른 글
JAVA Swing - JLayeredPane, 컨테이너에 레이어드적용 (0) | 2016.02.03 |
---|---|
JAVA Swing - JButton 이미지 외형 변경 (0) | 2016.02.03 |
JAVA Swing - JTextField & JPasswordField 테두리 없애기 (0) | 2016.02.03 |