没有酒吧的舞台(javafx)

时间:2016-02-07 07:10:28

标签: java javafx fxml

我想创建一个像javafx的eclipse加载窗口,没有条形码,

我能做什么!!?

此加载屏幕

enter image description here

2 个答案:

答案 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);