JScrollPane-只有垂直滚动?

时间:2012-11-20 03:44:15

标签: java swing jscrollpane jsplitpane jscrollbar

我有以下代码行:

JSplitPane VPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,(new class1()),new JScrollPane(new class2()));

我想class2只能垂直滚动吗?因为我的布局落后于其他位置。 我正在使用GridBagLayout,现在改变布局为时已晚。有没有办法解决这个问题?

1 个答案:

答案 0 :(得分:8)

+1 to trashgods comment。

  

它似乎不起作用 - 我只是得到错误= [

为了说明这一点:

JScrollPane js=...; //Create a variable reference to the an instance of scrollpane

JSPlitPane jsp;

js.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);//set the horizontal scrollbar to never appear

jsp=new JSplitPane(..,js);//create the splitpane with the jscrollpane etc

<强>更新

我建议您创建对变量/组件的引用,尤其是因为您可能希望稍后动态修改它们。