我正在使用RichTextFX,我很惊讶CodeArea默认情况下没有启用滚动条。我怎样才能出现这个?
答案 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());