JSplitPane 用于分隔两个(只能两个)
Component
。
JSplitPane.HORIZONTAL_SPLIT 可让分隔窗格中的两个
Component
从左到右排列,
JSplitPane.VERTICAL_SPLIT
使其从上到下排列。
JSplitPane subSplit = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
subSplit.setTopComponent(treeScrollPane);
subSplit.setBottomComponent(introjScrollPane);
subSplit.setContinuousLayout(false); //当调整大小时视图是否连续重新显示
subSplit.setDividerLocation(300); //设置分隔条的
初始位置 subSplit.setResizeWeight(0.6); //分隔
窗格的大小改变时如何分配额外空间
subSplit.setDividerSize(2); //分隔条大小
更多例子在:
http://www.java2s.com/Code/Java/Swing-JFC/Splitpane.htm类JSplitPane介绍:
http://gceclub.sun.com.cn/Java_Docs/html/zh_CN/api/javax/swing/JSplitPane.html