我有以下代码行:
JSplitPane VPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,(new class1()),new JScrollPane(new class2()));
我希望 class2 只有垂直滚动吗?因为我的布局会落到其他地方。我正在使用 GridBagLayout,现在更改布局为时已晚。有没有办法解决这个问题?
我有以下代码行:
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
更新
我建议创建对变量/组件的引用,尤其是因为您可能希望稍后动态修改它们。