Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- kotliln
- LastModified
- 브로틀리
- 이렇게살아야되나자괴감이
- 알고리즘
- 워드프레스
- HTTP
- 리얼월드HTTP
- Kotlin
- brotli
- jsr303
- 랜선아미안해
- Spring
- etag
- cache-control
- 코드스피츠
- cross parameter
- 개미수열
- 클래스레벨밸리데이션
- jsr380
- 알게뭐냐
- i18n
- 지뢰찾기
- 지수반등
- 스프링
Archives
- Today
- Total
취미개발 블로그와 마음수양
자바 이미지 버튼 제대로 다루기~ 본문
자 일단 이미지를 버튼에 삽입하는 방법은 다음과 같다~
public class 버튼처리연습 extends JFrame{ 버튼처리연습(){ setSize(200, 150); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setLayout(new FlowLayout()); JButton button = new JButton(new ImageIcon("img/btLogin.png")); add(button); setVisible(true); } public static void main(String[] args){ new 버튼처리연습(); } }
음...자 일단 버튼안에서 이미지가 이상하게 들어가는 것을 볼 수 있다..이미지만 보였으면 하는데~..
그럴때는 이렇게 하면 된다~
package 이미지처리; public class 버튼처리연습 extends JFrame implements ActionListener{ JButton bt; 버튼처리연습(){ setSize(200, 150); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setLayout(new FlowLayout()); bt = new JButton(new ImageIcon("img/btLogin.png")); bt.setBackground(Color.red); bt.setBorderPainted(false); bt.setFocusPainted(false); bt.setContentAreaFilled(false); bt.addActionListener(this); add(bt); setVisible(true); } @Override public void actionPerformed(ActionEvent e) { // TODO Auto-generated method stub if(e.getSource()==bt){ JOptionPane.showInputDialog("눌렸네~"); } } public static void main(String[] args){ new 버튼처리연습(); } }
음..소스가 약간 바뀌었지만 ㅎㅎㅎ
이밖에도 해봤던 옵션들~
bt.setMargin(new Insets(0, 0, 0, 0));
bt.setBackground(Color.black);
bt.setBorder(BorderFactory.createEmptyBorder());
bt.setBorderPainted( false );
'Language > 샘플-핵심코드' 카테고리의 다른 글
자바 액션 세가지 방법~ (0) | 2014.04.30 |
---|---|
쓰레드 제대로 죽이기~ (0) | 2014.04.29 |
자바 - 이미지 로드~ (0) | 2014.04.24 |
[자바] 콜렉션- 해쉬맵 테스트 (0) | 2014.04.23 |
자바 - 쓰레드의 신비한 특성.. 하나의 변수에 다 받아낸다? (0) | 2014.04.23 |