Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자바
- 자바스크립트
- asp.net
- javascript
- C#
- 안드로이드
- Apache Lucene
- 이클립스
- html
- SpringSource Tool Suite
- jsp
- Maven
- varags
- Bootstrap
- Java
- MS-SQL
- TextBox
- decompiler
- MANTIS
- STS
- Eclipse
- Android
- WebView
- 웹뷰
- Redirect
- 웹 서비스
- MSsql
- Web Service
- scrollView
- 컬럼명
Archives
- Today
- Total
bboks.net™
Componet 색깔 바꾸기 본문
SWING component는 색깔을 메소드를 이용해서 바꿀 수도 있고 HTML을 이용하는 방법도 있습니다.
이런식으로 메소드를 이용하거나
이런식으로 HTML코드로도 폰트 제어가 가능하거든요.
패널은 이렇게 배경색을 조절 하잖아요.
Panel.setBackground (Color.black); label = new JLabel("A label"); label.setFont(new Font("Serif", Font.PLAIN, 14)); label.setForeground(new Color(0xffffdd));
이런식으로 메소드를 이용하거나
JButton button = new JButton("<html><b><u>T</u>wo</b><br>lines</html>");
이런식으로 HTML코드로도 폰트 제어가 가능하거든요.