JSplitPane은 대상을 반으로 쪼갠다. 세로 , 혹은 가로로.
쪼개내는 부분을 Divider 라고 하는데 이 이치를 설정 할 수 있다.
생성자 이다.
new JSplitPane(int newOrientation,boolean newContinuousLayout);
1번째 : 어떤형태로 나눌것인가.
JSplitPane.HORIZONTAL_SPLIT // 좌우 등분
JSplitPane.VERTICAL_SPLIT // 상하 등분
2번째 : true로 하면 디바이더를 이동시킬떄 바로바로 이동되고
false로 하면 디바이더를 끌어서 내려놓았을때 이동이 된다 ㅋㅅㅋ;;
newContinuousLayout a boolean, true for the components to redraw continuously as the divider changes position, false to wait until the divider position stops changing to redraw
setRightComponent(Component c); //우측에 컴포넌트를 놓는다.
setLeftComponent(Component c); //좌측에 컴포넌트를 놓는다. 보통 둘다 패널같은거 넣음
setDividerLocation(int location); // 디바이더의 위치를 조정한다.
대충 요런식으로 짤린다.
[출처] [자바][스윙]JSplitPane 반으로 쪼개는 판넬|작성자 카루
'Programming > JAVA' 카테고리의 다른 글
[Swing]JTable 에 체크박스 넣기 (0) | 2012.10.07 |
---|---|
[Swing] JTree의 이벤트들 (0) | 2012.10.07 |
[Swing] JTree를 이용해 트리 구성하기 (0) | 2012.10.07 |
[Swing]파일열기 JFileChooser (0) | 2012.10.07 |
[Swing] JTable 생성하기. 초기 데이터 입력하기 (0) | 2012.10.07 |