RichTextFX在codeArea中获取滚动条

时间:2017-07-19 20:30:07

标签: javafx richtextfx

我正在使用RichTextFX,我很惊讶CodeArea默认情况下没有启用滚动条。我怎样才能出现这个?

1 个答案:

答案 0 :(得分:1)

这对我有用。我使用AnchorPane作为根节点。

    CodeArea codeArea = new CodeArea();
    VirtualizedScrollPane sp = new VirtualizedScrollPane(codeArea);

    anchorPane.getChildren().add(sp);

    anchorPane.setLeftAnchor(sp, 0.0);
    anchorPane.setRightAnchor(sp, 0.0);
    anchorPane.setBottomAnchor(sp, 0.0);
    anchorPane.setTopAnchor(sp, 0.0);

    codeArea.prefWidthProperty().bind(anchorPane.widthProperty());
    codeArea.prefHeightProperty().bind(anchorPane.heightProperty());