我的问题是,当我使用 setResizable(false) 时,我的场景中会显示一个白色边框。当我不将其设置为 false 时工作正常,但我需要将其设置为 false。
代码:
Scene scene = new Scene(new StackPane());
LoginManager loginManager = new LoginManager(scene);
loginManager.showLoginScreen();
primaryStage.setResizable(false);
primaryStage.setScene(scene);
primaryStage.show();
我的 ImageView 在我的 AnchorPane 内
<AnchorPane id="AnchorPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="900.0" xmlns:fx="http://javafx.com/fxml" fx:controller="br.com.facilit.target.app.desktop.view.MainViewController">
<children>
<ImageView id="background" fitHeight="600.0" fitWidth="900.0" pickOnBounds="true">
<image>
<Image url="@../images/background.jpg" preserveRatio="true" smooth="true" />
</image>