我有BorderPane
aScrollPane
作为中心元素。它会自动调整大小以填满屏幕。里面ScrollPane
是一个HBox
没有内容但是是一个拖放目标的对象。因此我希望它填充它的 parent ScrollPane
。
这样做的首选方法是什么?
到目前为止,我尝试的是覆盖ScrollPane.resize(...)
调整大小的方法,HBox
但它似乎相当复杂和非正统。
编辑:要为此添加一些有用的代码,这就是我可以解决问题的方法,但我相信必须有一些更好的方法来做到这一点:
@Override
public void resize(double width, double height) {
super.resize(width, height);
double scrollBarHeight = 2;
double scrollBarWidth = 2;
for (final Node node : lookupAll(".scroll-bar")) {
if (node instanceof ScrollBar) {
ScrollBar sb = (ScrollBar) node;
if (sb.getOrientation() == Orientation.HORIZONTAL) {
System.out.println("horizontal scrollbar visible = " + sb.isVisible());
System.out.println("width = " + sb.getWidth());
System.out.println("height = " + sb.getHeight());
if(sb.isVisible()){
scrollBarHeight = sb.getHeight();
}
}
if (sb.getOrientation() == Orientation.VERTICAL) {
System.out.println("vertical scrollbar visible = " + sb.isVisible());
System.out.println("width = " + sb.getWidth());
System.out.println("height = " + sb.getHeight());
if(sb.isVisible()){
scrollBarWidth = sb.getWidth();
}
}
}
}
hBox.setPrefSize(width-scrollBarWidth, height-scrollBarHeight);
}
部分代码取自这里:如何访问 ScrollPane 的滚动条