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