반응형
package javaapplication27; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; class SwingAPIEx extends JFrame{ JButton b1 ,b2, b3, b4; SwingAPIEx(){ this.setTitle("Swing공통 메소드"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setLayout(new FlowLayout()); b1= new JButton("위치와 크기 정보"); b2= new JButton("모양정보"); b3= new JButton("작동하지 않는 버튼"); b4= new JButton("숨기기/보이기"); b1.addActionListener(new MyActionListener()); this.add(b1); b2.setOpaque(true); b2.setForeground(Color.MAGENTA); b2.setBackground(Color.YELLOW); b2.setFont(new Font("고딕체", Font.ITALIC, 20)); b2.addActionListener(new MyActionListener()); this.add(b2); b3.setEnabled(false); b3.addActionListener(new MyActionListener()); this.add(b3); b4.addActionListener(new MyActionListener()); this.add(b4); this.setSize(250,200); this.setVisible(true); JCheckBox ch =new JCheckBox("cpfl"); ch.setHorizontalAlignment(HEIGHT); } class MyActionListener implements ActionListener{ @Override public void actionPerformed(ActionEvent e) { Object source=e.getSource(); if(source==b1){ System.out.println("버튼의 위치와 크기"); System.out.println("위치=("+b1.getX()+","+b1.getY()+")"); System.out.println("크기=("+b1.getWidth()+","+b1.getHeight()+")"); JPanel c=(JPanel)b2.getParent(); System.out.println("컨텐트팬의 위치와 크기"); System.out.println("위치=("+c.getX()+","+c.getY()+")"); System.out.println("크기=("+c.getWidth()+","+c.getHeight()+")"); } else if(source==b2){ System.out.println("폰트="+b2.getFont()); System.out.println("배경색="+b2.getBackground()); System.out.println("글자색"+b2.getForeground()); } else{ if(b1.isVisible()){ b1.setVisible(false); b2.setVisible(false); b3.setVisible(false); } else{ b1.setVisible(true); b2.setVisible(true); b3.setVisible(true); } } } } } public class JavaApplication27 { public static void main(String[] args) { new SwingAPIEx(); } }
<결과>
2016/10/28 - [자바] - 자바 소스코드: 마우스 휠을 이용한 글자 크기 조정
2016/10/27 - [자바] - 자바 소스코드: 마우스 이벤트를 이용한 문자 랜덤 이동
2016/10/27 - [자바] - 자바 소스코드: 키 이벤트를 이용한 글자 크기 조정
#자바 #자바 소스코드 #다양한 버튼 #액션 리스너 #컨텐트팬 #Swing 공통 메소드
반응형
'자바' 카테고리의 다른 글
자바 소스코드: 변화되는 버튼 생성 (0) | 2016.10.28 |
---|---|
자바 소스코드: 이미지 아이콘을 이용한 레이블 예제 (0) | 2016.10.28 |
자바 소스코드: 마우스 휠을 이용한 글자 크기 조정 (0) | 2016.10.28 |
자바 소스코드: 마우스 이벤트를 이용한 문자 랜덤 이동 (0) | 2016.10.27 |
자바 소스코드: 키 이벤트를 이용한 글자 크기 조정 (0) | 2016.10.27 |