我有一个BoarderPane(装饰:UTILITY),其中带有两个按钮的ButtonBar被放到BOTTOM:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ButtonBar?>
<?import javafx.scene.layout.BorderPane?>
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1" fx:controller="pw.yaps.client.jfx.view.SettingsViewController">
<bottom>
<ButtonBar BorderPane.alignment="CENTER">
<buttons>
<Button disable="true" mnemonicParsing="false" text="OK" />
<Button cancelButton="true" mnemonicParsing="false" onAction="#handleCancelAction" text="Cancel" />
</buttons>
<padding>
<Insets bottom="12.0" right="12.0" />
</padding>
</ButtonBar>
</bottom>
</BorderPane>
当舞台不可调整大小时,布局如下:
但是当我设置它可调整大小时它看起来不同:
如何避免这种行为?