3

我请求您的帮助,因为我在 JavaFX 中遇到了 ScrollPane 的问题。

我在 scrollPane 中添加了一个 Group,将 scrollpane 添加到 Scene,最后将其放入 JFXPanel,因为我在 Swing 应用程序中使用它并且它运行良好,接下来我将组件添加到 Group 中(组件是指节点的集合像矩形等...)。效果很好,但是当我想将一个组件移出滚动窗格布局时,组件的移动是无法控制的,它开始移动得非常快,我不明白为什么。当组件的边框接触到滚动窗格布局的边框时,它就开始麻烦了。我尝试改用 ScrollBar,但似乎 ScrollPane 是最合适的对象。

有我用来创建我的视图的代码:

public void createView() {
    this.architectureJFXPanel = new JFXPanel();
    this.group = new Group();
    this.scrollPane = new ScrollPane();


    this.scrollPane.setContent(group);
    this.scrollPane.setOnKeyPressed(new KeyPressed());

    Platform.runLater(new Runnable() {
        @Override
        public void run() {
            Scene scene = new Scene(scrollPane, Color.WHITE);
            architectureJFXPanel.setScene(scene);
        }
   });
}

为了将组件放入我使用的视图group.getChildren.add()中,然后我将 JFXPanel 放入 Swing 应用程序中。

这是我正在尝试做的一个例子。您可以在图片上看到我尝试将组件移出布局:

在此处输入图像描述

因此,如果有人已经遇到这种问题并且可以帮助我,我会非常感激 :) 询问我是否需要更多信息来了解问题出在哪里。

4

1 回答 1

1

这是我使用 ScrollBar 的 ScrollPane 的解决方法。

public void setStyle() {
    // In my program, TextField controls were generate at run-time, so the prefer height is calculated based on number of controls       
    int preHeight = 1000;
    Group root = new Group();

    // This anchor pane contains all control.
    AnchorPane anchorPane = new AnchorPane();
    // TODO: Add control into this anchor pane
    // anchorPane.getChildren().addAll();

    final ScrollBar sc = new ScrollBar();
    root.getChildren().addAll(anchorPane, sc);

    // Set default size for scene to 800 x 600
    int sceneW = 800;
    int sceneH = 600;
    final Scene scene = new Scene(root, sceneW, sceneH);

    // Setting for the scroll bar
    sc.setLayoutX(scene.getWidth()- sc.getWidth()/2 - 1);
    sc.setMin(0);
    sc.setOrientation(Orientation.VERTICAL);
    sc.setPrefHeight(sceneH);
    sc.setMax(preHeight - sceneH);

    // In case prefer height is smaller than scene height then hide the scroll bar
    if(preHeight < sceneH) {
        sc.setVisible(false);
    }

    scene.setRoot(root);

    // Change the scroll bar and the anchor pane when user change scene's width
    scene.widthProperty().addListener(new ChangeListener<Number>() {

        @Override
        public void changed(ObservableValue<? extends Number> arg0,
                Number arg1, Number arg2) {
            sc.setLayoutX(arg2.doubleValue()- sc.getWidth()/2 - 1);
            anchorPane.setPrefWidth(arg2.doubleValue() - sc.getWidth());
        }
    });

    // Change the scroll bar and the anchor pane when user change scene's height
    scene.heightProperty().addListener(new ChangeListener<Number>() {

        @Override
        public void changed(ObservableValue<? extends Number> arg0,
                Number arg1, Number arg2) {
            sc.setMax(preHeight - arg2.doubleValue());
            if(arg2.doubleValue() >= preHeight) {
                sc.setVisible(false);
            }
            else {
                sc.setVisible(true);
            }
            sc.setPrefHeight(arg2.doubleValue());
            anchorPane.setPrefHeight(arg2.doubleValue());
        }
    });

    // Change the Y position of anchor pane when user scroll the scroll bar
    sc.valueProperty().addListener(new ChangeListener<Number>() {
        public void changed(ObservableValue<? extends Number> ov,
                Number old_val, Number new_val) {
            anchorPane.setLayoutY(-new_val.doubleValue());
        }
    });

    anchorPane.setPrefSize(scene.getWidth() - sc.getWidth(), scene.getHeight());
}   

这种方法存在一个问题,即如果用户使用 Tab 键在屏幕中的控件之间导航,则滚动条的 Y 位置不会更改为相应的位置。您可以通过处理锚窗格中可聚焦控件的焦点事件并相应地设置滚动条的 Y 位置来解决此问题。

于 2012-08-01T09:43:17.427 回答