我有以下代码行:
JSplitPane VPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,(new class1()),new JScrollPane(new class2()));
我希望 class2 只有垂直滚动吗?因为我的布局在其他方面落入位。我正在使用GridBagLayout,现在更改布局为时已晚。有没有办法解决这个问题?
+1 到垃圾神评论。
它似乎不起作用 - 我只是收到错误 =[
为了说明这一点:
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
更新
我建议创建对变量/组件的引用,特别是因为您可能希望稍后动态修改它们。