2

我正在尝试创建一个面板,该面板在我的 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,但也失败了,说它无法解决。我可能在这里遗漏了一些愚蠢的东西;如何将面板设置为向侧面打开而不是垂直打开?

4

1 回答 1

2

JXCollapsiblePanel在 1.6.2 没有setOrientation方法。此外,还有JXCollapsiblePane.Orientation枚举。它可能被丢弃了。

但是,there is JXCollapsiblePane.Directionand there JXCollapsiblePanel.setDirection(),它可能是一个替代品。

这是一个关于这个的线程。

于 2012-07-18T20:54:23.020 回答