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 | 31 |
Tags
- 기본
- mybatis
- 어노테이션
- 국제화
- OGNL
- 오버로딩
- Spring
- 클래스
- HTML
- AWT
- 이클립스
- JavaScript
- paint
- struts2
- 예외처리
- 생성자
- Graphic
- 안드로이드
- Menu
- 메서드
- Eclips
- 배열
- Java
- 에러페이지
- oracle
- 메소드
- JSP
- layout
- Android
- 전화걸기
Archives
- Today
- Total
목록버튼 (1)
note
package com.display;//AWT로 버튼 생성 import java.awt.Frame; import java.awt.Button; public class ButtonTest extends Frame{ public ButtonTest(){ super("버튼 테스트"); Button b = new Button("확인"); //Frame에 Button등록 add(b); setSize(500,600); //width height setVisible(true); setLocation(100,400); //x,y } public static void main(String[] args) { new ButtonTest(); } }
자바/AWT
2011. 12. 29. 10:29