53

我有BorderPaneaScrollPane作为中心元素。它会自动调整大小以填满屏幕。里面ScrollPane是一个HBox没有内容但是是一个拖放目标的对象。因此我希望它填充它的 parent ScrollPane

这样做的首选方法是什么?

到目前为止,我尝试的是覆盖ScrollPane.resize(...)调整大小的方法,HBox但它似乎相当复杂和非正统。

编辑:要为此添加一些有用的代码,这就是我可以解决问题的方法,但我相信必须有一些更好的方法来做到这一点:

@Override
public void resize(double width, double height) {
    super.resize(width, height);

    double scrollBarHeight = 2;
    double scrollBarWidth = 2;

    for (final Node node : lookupAll(".scroll-bar")) {
        if (node instanceof ScrollBar) {
            ScrollBar sb = (ScrollBar) node;
            if (sb.getOrientation() == Orientation.HORIZONTAL) {
                System.out.println("horizontal scrollbar visible = " + sb.isVisible());
                System.out.println("width = " + sb.getWidth());
                System.out.println("height = " + sb.getHeight());
                if(sb.isVisible()){
                    scrollBarHeight = sb.getHeight();
                }
            }
            if (sb.getOrientation() == Orientation.VERTICAL) {
                System.out.println("vertical scrollbar visible = " + sb.isVisible());
                System.out.println("width = " + sb.getWidth());
                System.out.println("height = " + sb.getHeight());
                if(sb.isVisible()){
                    scrollBarWidth = sb.getWidth();
                }
            }
        }
    }

    hBox.setPrefSize(width-scrollBarWidth, height-scrollBarHeight);
}

部分代码取自这里:如何访问 ScrollPane 的滚动条

4

2 回答 2

94

尝试

ScrollPane scrollPane = new ScrollPane();
scrollPane.setFitToHeight(true);
scrollPane.setFitToWidth(true);

不覆盖该resize()方法。

于 2013-07-10T14:20:39.990 回答
30

通过or设置fitToHeightorfitToWidth属性:XMLCSS

FXML:

<ScrollPane fx:id="myScrollPane" fitToHeight="true" fitToWidth="true" />

CSS:

.my-scroll-pane {
    -fx-fit-to-height: true;
    -fx-fit-to-width: true;
}
于 2015-04-07T12:11:06.733 回答