编程语言
首页 > 编程语言> > java – JScrollPane-只有垂直滚动?

java – JScrollPane-只有垂直滚动?

作者:互联网

我有以下代码行:

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

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

解决方法:

1到trashgods评论.

It doesn’t seem to work- I’m just getting errors =[

为了说明这一点:

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

UPDATE

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

标签:jscrollbar,java,swing,jscrollpane,jsplitpane
来源: https://codeday.me/bug/20190725/1536643.html