gpt4 book ai didi

java - FXML 最小高度和最大宽度属性被忽略了吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:16:29 25 4
gpt4 key购买 nike

如何为我的窗口设置最小尺寸?我尝试设置 minHeight minWidth 值,但我仍然可以使用鼠标在此值下调整窗口大小。

这是我的 FXML 根 Pane :

<BorderPane fx:id="borderPane"
minHeight="200" minWidth="400" prefHeight="600" prefWidth="800"
xmlns="http://javafx.com/javafx/null"
xmlns:fx="http://javafx.com/fxml/1"
fx:controller="simulation.Simulation_Controller">
</BorderPane>

最佳答案

为此,您必须设置 StageminHeightminWidth

Java 代码中的某处...:

例子:

...
yourStage.setMinHeight(480);
yourStage.setMinWidth(640);
...

关于java - FXML 最小高度和最大宽度属性被忽略了吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36981599/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com