我正在尝试创建一个面板,该面板在我的 GUI 其余部分的左侧打开。我在 Eclipse 中工作。我添加swingx-core-1.6.2.jar
到我的构建路径中。我可以导入 org.jdesktop.swingx.JXCollapsiblePane
然后新建一个JXCollapsiblePane
,但为了设置窗格的方向,我需要执行以下操作:
JXCollapsiblePane myCollapsingPane = new JXCollapsiblePane();
mycollapsingPane.setOrientation(JXCollapsiblePane.Orientation.HORIZONTAL);
但是,这不能说明方向无法解决。所以,我尝试了 importing
org.jdesktop.swingx.JXCollapsiblePane.Orientation
,但也失败了,说它无法解决。我可能在这里遗漏了一些愚蠢的东西;如何将面板设置为向侧面打开而不是垂直打开?