javafx を使用してサンプルの CRUD アプリケーションを作成しています。これは私の FXML ファイルです。
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.paint.*?>
<BorderPane fx:id="root" depthTest="ENABLE" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity"
xmlns:fx="http://javafx.com/fxml" fx:controller="org.tarrsalah.persona.gui.MainViewPresenter">
<center>
<TableView fx:id="table" minHeight="500.0" minWidth="600.0" prefHeight="-1.0" prefWidth="-1.0">
<columns>
<TableColumn prefWidth="75.0" text="name" fx:id="name" />
<TableColumn prefWidth="75.0" text="last name" fx:id="lastname" />
</columns>
<BorderPane.margin>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</BorderPane.margin>
</TableView>
</center>
<right>
<VBox VBox.vgrow="ALWAYS" fillWidth="true" spacing="10.0" BorderPane.alignment="TOP_LEFT" minWidth="200" >
<children >
<Button fx:id="newP" prefWidth="100.0" minWidth="80" text="New" VBox.vgrow="NEVER" />
<Button fx:id="alter" prefWidth="100.0" minWidth="80" text="Alter" VBox.vgrow="NEVER" />
<Button fx:id="remove" prefWidth="100.0" minWidth="80" text="remove" VBox.vgrow="NEVER" />
</children>
<padding>
<Insets left="20.0" right="20.0" top="10.0" />
</padding>
</VBox>
</right>
</BorderPane>
ステージのサイズを変更しようとすると、ご覧のとおり、すべてのボタンが Vbox レイアウトから外れます
Vbox ペインが縮小しないようにするにはどうすればよいですか?