티스토리 뷰
class FlowLayoutTest extends Frame {
public FlowLayoutTest(String str) {
super(str);
FlowLayout fl = new FlowLayout();
Button btn[] = new Button[10];
setLayout(fl);
for (int i = 0; i < 10; i++) {
btn[i] = new Button((i + 1) + "번 버튼");
add(btn[i]);
}
setBounds(100, 100, 200, 200);
setVisible(true);
}
}
public class FlowLayoutMain {
public static void main(String[] args) {
// TODO Auto-generated method stub
new FlowLayoutTest("Flow Layout Test");
}
}
'java,web study > 3주차 (7월 15일 ~21일)' 카테고리의 다른 글
Grid Layout (0) | 2013.07.17 |
---|---|
Border Layout (0) | 2013.07.17 |
메뉴 만들기 (0) | 2013.07.17 |
텍스트에어리어 컴포넌트 (0) | 2013.07.17 |
텍스트필드 컴포넌트 (0) | 2013.07.17 |
댓글