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 |
Tags
- 오버로딩
- JavaScript
- Eclips
- HTML
- 어노테이션
- 메소드
- 이클립스
- 메서드
- 배열
- 안드로이드
- 기본
- Graphic
- Android
- AWT
- OGNL
- oracle
- 클래스
- 국제화
- 생성자
- 전화걸기
- struts2
- Menu
- layout
- 에러페이지
- Java
- Spring
- paint
- JSP
- 예외처리
- mybatis
Archives
- Today
- Total
목록버튼 (1)
note
AWT로 버튼생성
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