日期:2014-05-16 浏览次数:20349 次
当使用JSplitpane分隔面板时
可以通过 splitPaneMain.setOneTouchExpandable(true);
设置?oneTouchExpandable?属性的值,要使?JSplitPane?在分隔条上提供一个 UI 小部件来快速展开/折叠分隔条
但是如果要初始化时默认就折叠一边的话 网上搜索添加下面几句就可以了,但是验证了下只有在一边没加控件时才行
?
// Hide left or top
splitPaneMain.getLeftComponent().setMinimumSize(new Dimension());
splitPaneMain.setDividerLocation(0.0d);
// Hide right or bottom
splitPaneMain.getRightComponent