在FXML(JavaFX)中用户调整大小后如何获得新的窗口大小?我搜索了一个“onResizeWindow”方法,但我一无所获。
我有一个简单的Pane
,我希望它在用户调整窗口大小时自行调整大小。你如何用Pane调整ToolBar的大小?
这是我的FXML代码:
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/null" xmlns:fx="http://javafx.com/fxml/1" fx:controller="testJavaFXML.Controller">
<padding>
<Insets bottom="200.0" left="200.0" right="200.0" top="200.0" />
</padding>
<children>
<ToolBar prefWidth="600.0">
<items>
<Button fx:id="buttonPlay" mnemonicParsing="false" onAction="#handlePlayButtonAction" text="Play" />
<Button fx:id="buttonPause" mnemonicParsing="false" onAction="#handlePauseButtonAction" text="Pause" />
<Button fx:id="buttonStop" mnemonicParsing="false" onAction="#handleStopButtonAction" text="Stop" />
</items>
</ToolBar>
<Label fx:id="labelHelloWorld" layoutX="250.0" layoutY="187.0" text="Hello World!" />
</children>
</Pane>
我找到了如何执行此操作:我必须使用包含StackPane
的{{1}},如下所示:
Pane
答案 0 :(得分:0)
您可以聆听舞台的宽度和高度:
stage.widthProperty().addListener((ov, oldWidth, newWidth) -> someAction);
但更好的方法是使用适当的LayoutPane,例如处理调整大小的BorderPane