我将带有3个按钮的VBox放在BorderPane右侧区域的中央时遇到问题。有没有办法在FXML或CSS中做到这一点?
更新:
这是FXML中的代码
<right>
<VBox id="otherButtons_vbox">
<Button text="Add automobile"
fx:id="addAutomobileButton" onAction="#createAddAutomobileBox"
id="other_buttons"/>
<Button text="Update automobile"
fx:id="updateAutomobileButton" onAction="#UpdateAutomobileBox"
id="other_buttons"/>
<Button text="Delete automobile"
fx:id="deleteAutomobileButton" onAction="#DeleteAutomobileBox"
id="other_buttons"/>
</VBox>
</right>
这是CSS文件
#otherButtons_vbox {
-fx-background-color: black;
-fx-border-color: red;
-fx-alignment: center-right;
-fx-spacing: 10;
-fx-padding: 10 10 10 10;
-fx-pref-width: 170;
-fx-max-height: 190;
}
还有APP的截图。我希望Vbox位于BorderPate右侧区域的中央。
非常感谢你的回复!
最佳答案
您可以从fxml执行此操作。为BorderPane.alignment
设置VBox
属性:
...
<VBox id="otherButtons_vbox" BorderPane.alignment="CENTER">
...
关于java - JAVAFX如何将Vbox在BorderPane的右侧区域居中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53479426/