我正在使用 RichTextFX,我很惊讶 CodeArea 没有默认启用滚动条。我怎样才能让它出现?
问问题
879 次
1 回答
0
这对我有用。我用一个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());
于 2020-03-17T14:47:31.447 回答