我试图创建一个面板,该面板在我的GUI其余部分的左侧打开。我正在Eclipse中工作。我在构建路径中添加了swingx-core-1.6.2.jar。我可以导入org.jdesktop.swingx.JXCollapsiblePane然后创建一个新的JXCollapsiblePane,但是为了设置窗格的方向,我需要执行以下操作:

JXCollapsiblePane myCollapsingPane = new JXCollapsiblePane();
mycollapsingPane.setOrientation(JXCollapsiblePane.Orientation.HORIZONTAL);


但是,这不能说不能解决定向问题。因此,我尝试导入
org.jdesktop.swingx.JXCollapsiblePane.Orientation,也无法说无法解决。
我可能在这里想念一些愚蠢的东西。如何将面板设置为向侧面而不是垂直打开?

最佳答案

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

但是,有JXCollapsiblePane.Direction并且有JXCollapsiblePanel.setDirection(),它很可能是替代品。

这是关于此的thread

10-07 19:30