JavaFx:如何在全屏时集中布局?

时间:2015-09-04 07:54:14

标签: javafx javafx-2 javafx-8

当用户点击全屏按钮时,使窗口全屏,但我希望内容不要调整大小,我想集中它。 像这样: Making the window to be full screen, but the content not.

我怎样才能在javafx中这样做? 谢谢大家!

1 个答案:

答案 0 :(得分:3)

尝试将您的内容包装到另一个窗格中(例如StackPane)。 确保您的内容不会增长到外部窗格的大小。你可以实现这个目标通过设置最大宽度/高度来获取首选大小。

简单的FXML示例:

<?import java.lang.*?>
<?import javafx.scene.layout.*?>


<StackPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
   <children>
      <BorderPane maxHeight="-Infinity" maxWidth="-Infinity" prefHeight="200.0" prefWidth="200.0" style="-fx-background-color: red;" StackPane.alignment="CENTER" />
   </children>
</StackPane>