오늘은 이전 포스팅에서 알아보았던 GUI 프로그래밍 예제를 통해서 알아봅시다. 1. FlowLayout FlowLayout은 몇 개의 컴포넌트를 자연스러운 크기로 한 줄로 순서대로 배치합니다. 그럼 예제를 통해서 알아봅시다. public class FlowlayoutEx1 extends JFrame { public FlowlayoutEx1(){ setTitle("FlowLayOut 예제"); setSize(300,200); setVisible(true); setDefaultCloseOperation(EXIT_ON_CLOSE); // flowlayout 설정 setLayout(new FlowLayout(FlowLayout.RIGHT,30,40)); //FloLayout,정렬위치,컴포넌트간 좌우간격 30픽셀..