答案 0 :(得分:1)
日冰,
你可以试试这个:@Override
public void start(Stage primaryStage) {
try {
BorderPane root = new BorderPane();
Scene scene = new Scene(root,400,400);
scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
primaryStage.initStyle(StageStyle.UNDECORATED);
scene.setFill(Color.BLACK);
primaryStage.setScene(scene);
primaryStage.show();
} catch(Exception e) {
e.printStackTrace();
}
}
答案 1 :(得分:1)
只需使用此行。您不会在应用程序中看到任何标题栏。
stage.initStyle(StageStyle.UNDECORATED);