0

我有 VBox 填充 ImageViews 和 VBox 放置在 CENTER 的 BorderPane 内。
现在,当移动 ScrollBar 时,我得到了它的值,我希望我的 VBox 在 Y 轴上的重定位与 ScrollBar 的值一样多。
我的代码很简单:

@Override
    public void start(Stage stage) throws Exception {
        stage.setTitle("MyScrollbarSample");

        ScrollBar scrollBar = new ScrollBar();
        scrollBar.setBlockIncrement(10);
        scrollBar.setMax(180);
        scrollBar.setOrientation(Orientation.VERTICAL);
        // scrollBar.setPrefHeight(180);
        scrollBar.setValue(90);

        final VBox vBox = new VBox(1);
        // vBox.setPrefHeight(180);
        for (int i = 1; i < 6; i++) {
            vBox.getChildren().add(new ImageView(new Image(getClass().getResourceAsStream("fw" + i + ".jpg"))));
        }

        scrollBar.valueProperty().addListener(new ChangeListener<Number>() {
            @Override
            public void changed(ObservableValue<? extends Number> observable, Number oldValue, Number newValue) {
                System.out.println("newValue=" + newValue.doubleValue());
//              vBox.setLayoutY(-newValue.doubleValue());
                vBox.relocate(vBox.getLayoutX(), - newValue.doubleValue());
            }
        });

        BorderPane borderPane = new BorderPane();
        borderPane.setCenter(vBox);
        borderPane.setRight(scrollBar);
        stage.setScene(new Scene(borderPane));
        stage.show();
    }

不幸的是,当我移动 ScrollBar 时,VBox 上的 setLayoutY 和重定位都不会移动它。

4

1 回答 1

1

听起来您正在尝试制作一个随滚动条浮动的 vbox。您可以尝试将滚动条值属性绑定到适当的 vbox 布局维度,而不是使用侦听器。例如

ScrollBar bar = new ScrollBar();
VBox box = new VBox();

box.layoutYProperty().bind(bar.valueProperty());

但是,如果您只是将 VBox 放置在边框窗格的中心,那么这可能不起作用,具体取决于您将 VBox 放置在边框窗格中的方式。您可能需要将 VBox 包装在 AnchorPane 中,以便可以像这样进行绝对定位。

我不是 100% 确定这会奏效,但您可能想尝试一下。祝你好运。

  • chooks
于 2013-09-22T20:15:22.113 回答