Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几个组件BorderPane可以使用复选框可见或不可见。当我将组件设置为不可见时,我得到了想要通过调整下一个组件的大小来填充的空白空间。当组件设置为 时,配置组件以填充空白空间的可用选项有哪些.setVisible(false);?
BorderPane
.setVisible(false);
你也需要打电话setManaged(false)。
setManaged(false)
您可以利用绑定来根据可见性自动设置托管属性。例如component.managedProperty().bind(component.visibleProperty());
component.managedProperty().bind(component.visibleProperty());