你好,我做了一个简单的游戏,当它结束时,它将显示一个带有一些信息的新阶段:
public static void d(String m){
Stage stage = new Stage();
stage.setTitle("GAME FINISHED");
Label label = new Label(m);
label.setTextFill(Color.PURPLE);
label.setFont(new Font("Cambria",14));
Button button = new Button("Close");
VBox vb = new VBox();
button.setOnAction(e-> p.close());
vb.getChildren().addAll(label,button);
vb.setSpacing(50);
vb.setPadding(new Insets(5,0,0,12));
Scene scene = new Scene(v,200,300);
stage.setScene(scene);
stage.setResizable(false);
stage.showAndWait();
}
我不希望该窗口显示在中间(因为它隐藏了游戏的某些内容) 有可能吗?。
答案 0 :(得分:2)
您可以使用stage.setX()和stage.setY()方法来手动设置窗口位置:
// create and init stage
stage.setX(200);
stage.setY(200);
stage.showAndWait();
如果要根据屏幕尺寸计算位置,可以使用以下方法获取尺寸:
Rectangle2D bounds = Screen.getPrimary().getVisualBounds();
如果要使用stage.getWidth()
或stage.getHeight()
来计算位置,则必须先显示舞台:
stage.show();
Rectangle2D bounds = Screen.getPrimary().getVisualBounds();
double x = bounds.getMinX() + (bounds.getWidth() - scene.getWidth()) * 0.3;
double y = bounds.getMinY() + (bounds.getHeight() - scene.getHeight()) * 0.7;
stage.setX(x);
stage.setY(y);
在这种情况下,您应该使用stage.show()
而不是stage.showAndWait()
。