1

我无法为中心组件设置滚动。但 NORTH 和 SOUTH 必须固定。

this.setLayout(new BorderLayout());
this.setScrollable(false);
this.addComponent(BorderLayout.NORTH, top);
scrollWrap.setScrollable(true);
this.addComponent(BorderLayout.CENTER, scrollWrap);
this.addComponent(BorderLayout.SOUTH, bottom);

问题是什么?

4

1 回答 1

1

我假设这段代码在 Form 的子类中?具体是什么不工作?您打算在 X 和 Y 上启用滚动吗?您是否将组件添加到容器中?仅当您将组件添加到 scrollWrap 容器中时,滚动才会起作用

于 2012-05-12T18:43:45.910 回答